Spring Cloud2018-07-02Spring Cloud provides tools for developers to quickly build some of
the common patterns in distributed systems (e.g. configuration
management, service discovery, circuit breakers, intelligent routing,
micro-proxy, control bus). Coordination of
distributed systems leads to boiler plate patterns, and using Spring
Cloud developers can quickly stand up services and applications that
implement those patterns. They will work well in any distributed
environment, including the developer’s own laptop, bare metal data
centres, and managed platforms such as Cloud Foundry.Version: Edgware.SR4FeaturesSpring Cloud focuses on providing good out of box experience for typical use cases
and extensibility mechanism to cover others.Distributed/versioned configurationService registration and discoveryRoutingService-to-service callsLoad balancingCircuit BreakersDistributed messagingCloud Native ApplicationsCloud Native is a style of application development that encourages easy adoption of best practices in the areas of continuous delivery and value-driven development. A related discipline is that of building 12-factor Apps in which development practices are aligned with delivery and operations goals, for instance by using declarative programming and management and monitoring. Spring Cloud facilitates these styles of development in a number of specific ways and the starting point is a set of features that all components in a distributed system either need or need easy access to when required.Many of those features are covered by Spring Boot, which we build on in Spring Cloud. Some more are delivered by Spring Cloud as two libraries: Spring Cloud Context and Spring Cloud Commons. Spring Cloud Context provides utilities and special services for the ApplicationContext of a Spring Cloud application (bootstrap context, encryption, refresh scope and environment endpoints). Spring Cloud Commons is a set of abstractions and common classes used in different Spring Cloud implementations (eg. Spring Cloud Netflix vs. Spring Cloud Consul).If you are getting an exception due to "Illegal key size" and you are using Sun’s JDK, you need to install the Java Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy Files. See the following links for more information:Java 6 JCEJava 7 JCEJava 8 JCEExtract files into JDK/jre/lib/security folder (whichever version of JRE/JDK x64/x86 you are using).Spring Cloud is released under the non-restrictive Apache 2.0 license. If you would like to contribute to this section of the documentation or if you find an error, please find the source code and issue trackers in the project at github.Spring Cloud Context: Application Context ServicesSpring Boot has an opinionated view of how to build an application
with Spring: for instance it has conventional locations for common
configuration file, and endpoints for common management and monitoring
tasks. Spring Cloud builds on top of that and adds a few features that
probably all components in a system would use or occasionally need.The Bootstrap Application ContextA Spring Cloud application operates by creating a "bootstrap"
context, which is a parent context for the main application. Out of
the box it is responsible for loading configuration properties from
the external sources, and also decrypting properties in the local
external configuration files. The two contexts share an Environment
which is the source of external properties for any Spring
application. Bootstrap properties (not bootstrap.properties but properties
that are loaded during the bootstrap phase) are added with high precedence, so
they cannot be overridden by local configuration, by default.The bootstrap context uses a different convention for locating
external configuration than the main application context, so instead
of application.yml (or .properties) you use bootstrap.yml,
keeping the external configuration for bootstrap and main context
nicely separate. Example:bootstrap.ymlspring:
application:
name: foo
cloud:
config:
uri: ${SPRING_CONFIG_URI:http://localhost:8888}It is a good idea to set the spring.application.name (in
bootstrap.yml or application.yml) if your application needs any
application-specific configuration from the server.You can disable the bootstrap process completely by setting
spring.cloud.bootstrap.enabled=false (e.g. in System properties).Application Context HierarchiesIf you build an application context from SpringApplication or
SpringApplicationBuilder, then the Bootstrap context is added as a
parent to that context. It is a feature of Spring that child contexts
inherit property sources and profiles from their parent, so the "main"
application context will contain additional property sources, compared
to building the same context without Spring Cloud Config. The
additional property sources are:"bootstrap": an optional CompositePropertySource appears with high
priority if any PropertySourceLocators are found in the Bootstrap
context, and they have non-empty properties. An example would be
properties from the Spring Cloud Config Server. See
below for instructions
on how to customize the contents of this property source."applicationConfig: [classpath:bootstrap.yml]" (and friends if
Spring profiles are active). If you have a bootstrap.yml (or
properties) then those properties are used to configure the Bootstrap
context, and then they get added to the child context when its parent
is set. They have lower precedence than the application.yml (or
properties) and any other property sources that are added to the child
as a normal part of the process of creating a Spring Boot
application. See below for
instructions on how to customize the contents of these property
sources.Because of the ordering rules of property sources the "bootstrap"
entries take precedence, but note that these do not contain any data
from bootstrap.yml, which has very low precedence, but can be used
to set defaults.You can extend the context hierarchy by simply setting the parent
context of any ApplicationContext you create, e.g. using its own
interface, or with the SpringApplicationBuilder convenience methods
(parent(), child() and sibling()). The bootstrap context will be
the parent of the most senior ancestor that you create yourself.
Every context in the hierarchy will have its own "bootstrap" property
source (possibly empty) to avoid promoting values inadvertently from
parents down to their descendants. Every context in the hierarchy can
also (in principle) have a different spring.application.name and
hence a different remote property source if there is a Config
Server. Normal Spring application context behaviour rules apply to
property resolution: properties from a child context override those in
the parent, by name and also by property source name (if the child has
a property source with the same name as the parent, the one from the
parent is not included in the child).Note that the SpringApplicationBuilder allows you to share an
Environment amongst the whole hierarchy, but that is not the
default. Thus, sibling contexts in particular do not need to have the
same profiles or property sources, even though they will share common
things with their parent.Changing the Location of Bootstrap PropertiesThe bootstrap.yml (or .properties) location can be specified using
spring.cloud.bootstrap.name (default "bootstrap") or
spring.cloud.bootstrap.location (default empty), e.g. in System
properties. Those properties behave like the spring.config.*
variants with the same name, in fact they are used to set up the
bootstrap ApplicationContext by setting those properties in its
Environment. If there is an active profile (from
spring.profiles.active or through the Environment API in the
context you are building) then properties in that profile will be
loaded as well, just like in a regular Spring Boot app, e.g. from
bootstrap-development.properties for a "development" profile.Overriding the Values of Remote PropertiesThe property sources that are added to you application by the
bootstrap context are often "remote" (e.g. from a Config Server), and
by default they cannot be overridden locally, except on the command
line. If you want to allow your applications to override the remote
properties with their own System properties or config files, the
remote property source has to grant it permission by setting
spring.cloud.config.allowOverride=true (it doesn’t work to set this
locally). Once that flag is set there are some finer grained settings
to control the location of the remote properties in relation to System
properties and the application’s local configuration:
spring.cloud.config.overrideNone=true to override with any local
property source, and
spring.cloud.config.overrideSystemProperties=false if only System
properties and env vars should override the remote settings, but not
the local config files.Customizing the Bootstrap ConfigurationThe bootstrap context can be trained to do anything you like by adding
entries to /META-INF/spring.factories under the key
org.springframework.cloud.bootstrap.BootstrapConfiguration. This is
a comma-separated list of Spring @Configuration classes which will
be used to create the context. Any beans that you want to be available
to the main application context for autowiring can be created here,
and also there is a special contract for @Beans of type
ApplicationContextInitializer. Classes can be marked with an @Order
if you want to control the startup sequence (the default order is
"last").Be careful when adding custom BootstrapConfiguration that the
classes you add are not @ComponentScanned by mistake into your
"main" application context, where they might not be needed.
Use a separate package name for boot configuration classes that is
not already covered by your @ComponentScan or @SpringBootApplication
annotated configuration classes.The bootstrap process ends by injecting initializers into the main
SpringApplication instance (i.e. the normal Spring Boot startup
sequence, whether it is running as a standalone app or deployed in an
application server). First a bootstrap context is created from the
classes found in spring.factories and then all @Beans of type
ApplicationContextInitializer are added to the main
SpringApplication before it is started.Customizing the Bootstrap Property SourcesThe default property source for external configuration added by the
bootstrap process is the Config Server, but you can add additional
sources by adding beans of type PropertySourceLocator to the
bootstrap context (via spring.factories). You could use this to
insert additional properties from a different server, or from a
database, for instance.As an example, consider the following trivial custom locator:@Configuration
public class CustomPropertySourceLocator implements PropertySourceLocator {
@Override
public PropertySource<?> locate(Environment environment) {
return new MapPropertySource("customProperty",
Collections.<String, Object>singletonMap("property.from.sample.custom.source", "worked as intended"));
}
}The Environment that is passed in is the one for the
ApplicationContext about to be created, i.e. the one that we are
supplying additional property sources for. It will already have its
normal Spring Boot-provided property sources, so you can use those to
locate a property source specific to this Environment (e.g. by
keying it on the spring.application.name, as is done in the default
Config Server property source locator).If you create a jar with this class in it and then add a
META-INF/spring.factories containing:org.springframework.cloud.bootstrap.BootstrapConfiguration=sample.custom.CustomPropertySourceLocatorthen the "customProperty" PropertySource will show up in any
application that includes that jar on its classpath.Logging ConfigurationIf you are going to use Spring Boot to configure log settings than
you should place this configuration in `bootstrap.[yml | properties]
if you would like it to apply to all events.Environment ChangesThe application will listen for an EnvironmentChangeEvent and react
to the change in a couple of standard ways (additional
ApplicationListeners can be added as @Beans by the user in the
normal way). When an EnvironmentChangeEvent is observed it will
have a list of key values that have changed, and the application will
use those to:Re-bind any @ConfigurationProperties beans in the contextSet the logger levels for any properties in logging.level.*Note that the Config Client does not by default poll for changes in
the Environment, and generally we would not recommend that approach
for detecting changes (although you could set it up with a
@Scheduled annotation). If you have a scaled-out client application
then it is better to broadcast the EnvironmentChangeEvent to all
the instances instead of having them polling for changes (e.g. using
the Spring Cloud
Bus).The EnvironmentChangeEvent covers a large class of refresh use
cases, as long as you can actually make a change to the Environment
and publish the event (those APIs are public and part of core
Spring). You can verify the changes are bound to
@ConfigurationProperties beans by visiting the /configprops
endpoint (normal Spring Boot Actuator feature). For instance a
DataSource can have its maxPoolSize changed at runtime (the
default DataSource created by Spring Boot is an
@ConfigurationProperties bean) and grow capacity
dynamically. Re-binding @ConfigurationProperties does not cover
another large class of use cases, where you need more control over the
refresh, and where you need a change to be atomic over the whole
ApplicationContext. To address those concerns we have
@RefreshScope.Refresh ScopeA Spring @Bean that is marked as @RefreshScope will get special
treatment when there is a configuration change. This addresses the
problem of stateful beans that only get their configuration injected
when they are initialized. For instance if a DataSource has open
connections when the database URL is changed via the Environment, we
probably want the holders of those connections to be able to complete
what they are doing. Then the next time someone borrows a connection
from the pool he gets one with the new URL.Refresh scope beans are lazy proxies that initialize when they are
used (i.e. when a method is called), and the scope acts as a cache of
initialized values. To force a bean to re-initialize on the next
method call you just need to invalidate its cache entry.The RefreshScope is a bean in the context and it has a public method
refreshAll() to refresh all beans in the scope by clearing the
target cache. There is also a refresh(String) method to refresh an
individual bean by name. This functionality is exposed in the
/refresh endpoint (over HTTP or JMX).@RefreshScope works (technically) on an @Configuration
class, but it might lead to surprising behaviour: e.g. it does not
mean that all the @Beans defined in that class are themselves
@RefreshScope. Specifically, anything that depends on those beans
cannot rely on them being updated when a refresh is initiated, unless
it is itself in @RefreshScope (in which it will be rebuilt on a
refresh and its dependencies re-injected, at which point they will be
re-initialized from the refreshed @Configuration).Encryption and DecryptionSpring Cloud has an Environment pre-processor for decrypting
property values locally. It follows the same rules as the Config
Server, and has the same external configuration via encrypt.*. Thus
you can use encrypted values in the form {cipher}* and as long as
there is a valid key then they will be decrypted before the main
application context gets the Environment. To use the encryption
features in an application you need to include Spring Security RSA in
your classpath (Maven co-ordinates
"org.springframework.security:spring-security-rsa") and you also need
the full strength JCE extensions in your JVM.If you are getting an exception due to "Illegal key size" and you are using Sun’s JDK, you need to install the Java Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy Files. See the following links for more information:Java 6 JCEJava 7 JCEJava 8 JCEExtract files into JDK/jre/lib/security folder (whichever version of JRE/JDK x64/x86 you are using).EndpointsFor a Spring Boot Actuator application there are some additional management endpoints:POST to /env to update the Environment and rebind @ConfigurationProperties and log levels/refresh for re-loading the boot strap context and refreshing the @RefreshScope beans/restart for closing the ApplicationContext and restarting it (disabled by default)/pause and /resume for calling the Lifecycle methods (stop() and start() on the ApplicationContext)If you disable the /restart endpoint then the /pause and /resume endpoints
will also be disabled since they are just a special case of /restart.Spring Cloud Commons: Common AbstractionsPatterns such as service discovery, load balancing and circuit breakers lend themselves to a common abstraction layer that can be consumed by all Spring Cloud clients, independent of the implementation (e.g. discovery via Eureka or Consul).@EnableDiscoveryClientCommons provides the @EnableDiscoveryClient annotation. This looks for implementations of the DiscoveryClient interface via META-INF/spring.factories. Implementations of Discovery Client will add a configuration class to spring.factories under the org.springframework.cloud.client.discovery.EnableDiscoveryClient key. Examples of DiscoveryClient implementations: are Spring Cloud Netflix Eureka, Spring Cloud Consul Discovery and Spring Cloud Zookeeper Discovery.By default, implementations of DiscoveryClient will auto-register the local Spring Boot server with the remote discovery server. This can be disabled by setting autoRegister=false in @EnableDiscoveryClient.The use of @EnableDiscoveryClient is no longer required. It is enough to just have a DiscoveryClient implementation
on the classpath to cause the Spring Boot application to register with the service discovery server.Health IndicatorCommons creates a Spring Boot HealthIndicator that DiscoveryClient implementations can participate in by implementing DiscoveryHealthIndicator. To disable the composite HealthIndicator set spring.cloud.discovery.client.composite-indicator.enabled=false. A generic HealthIndicator based on DiscoveryClient is auto-configured (DiscoveryClientHealthIndicator). To disable it, set `spring.cloud.discovery.client.health-indicator.enabled=false. To disable the description field of the DiscoveryClientHealthIndicator set spring.cloud.discovery.client.health-indicator.include-description=false, otherwise it can bubble up as the description of the rolled up HealthIndicator.ServiceRegistryCommons now provides a ServiceRegistry interface which provides methods like register(Registration) and deregister(Registration) which allow you to provide custom registered services. Registration is a marker interface.@Configuration
@EnableDiscoveryClient(autoRegister=false)
public class MyConfiguration {
private ServiceRegistry registry;
public MyConfiguration(ServiceRegistry registry) {
this.registry = registry;
}
// called via some external process, such as an event or a custom actuator endpoint
public void register() {
Registration registration = constructRegistration();
this.registry.register(registration);
}
}Each ServiceRegistry implementation has its own Registry implementation.ZookeeperRegistration used with ZookeeperServiceRegistryEurekaRegistration used with EurekaServiceRegistryConsulRegistration used with ConsulServiceRegistryIf you are using the ServiceRegistry interface, you are going to need to pass the
correct Registry implementation for the ServiceRegistry implementation you
are using.ServiceRegistry Auto-RegistrationBy default, the ServiceRegistry implementation will auto-register the running service. To disable that behavior, there are two methods. You can set @EnableDiscoveryClient(autoRegister=false) to permanently disable auto-registration. You can also set spring.cloud.service-registry.auto-registration.enabled=false to disable the behavior via configuration.Service Registry Actuator EndpointA /service-registry actuator endpoint is provided by Commons. This endpoint relys on a Registration bean in the Spring Application Context. Calling /service-registry/instance-status via a GET will return the status of the Registration. A POST to the same endpoint with a String body will change the status of the current Registration to the new value. Please see the documentation of the ServiceRegistry implementation you are using for the allowed values for updating the status and the values retured for the status.Spring RestTemplate as a Load Balancer ClientRestTemplate can be automatically configured to use ribbon. To create a load balanced RestTemplate create a RestTemplate@Bean and use the @LoadBalanced qualifier.A RestTemplate bean is no longer created via auto configuration. It must be created by individual applications.@Configuration
public class MyConfiguration {
@LoadBalanced
@Bean
RestTemplate restTemplate() {
return new RestTemplate();
}
}
public class MyClass {
@Autowired
private RestTemplate restTemplate;
public String doOtherStuff() {
String results = restTemplate.getForObject("http://stores/stores", String.class);
return results;
}
}The URI needs to use a virtual host name (ie. service name, not a host name).
The Ribbon client is used to create a full physical address. See
RibbonAutoConfiguration
for details of how the RestTemplate is set up.Retrying Failed RequestsA load balanced RestTemplate can be configured to retry failed requests.
By default this logic is disabled, you can enable it by adding Spring Retry to your application’s classpath. The load balanced RestTemplate will
honor some of the Ribbon configuration values related to retrying failed requests. If
you would like to disable the retry logic with Spring Retry on the classpath
you can set spring.cloud.loadbalancer.retry.enabled=false.
The properties you can use are client.ribbon.MaxAutoRetries,
client.ribbon.MaxAutoRetriesNextServer, and client.ribbon.OkToRetryOnAllOperations.
See the Ribbon documentation
for a description of what there properties do.If you would like to implement a BackOffPolicy in your retries you will need to
create a bean of type LoadBalancedBackOffPolicyFactory, and return the BackOffPolicy
you would like to use for a given service.@Configuration
public class MyConfiguration {
@Bean
LoadBalancedBackOffPolicyFactory backOffPolciyFactory() {
return new LoadBalancedBackOffPolicyFactory() {
@Override
public BackOffPolicy createBackOffPolicy(String service) {
return new ExponentialBackOffPolicy();
}
};
}
}client in the above examples should be replaced with your Ribbon client’s
name.If you want to add one or more RetryListener to your retry you will need to
create a bean of type LoadBalancedRetryListenerFactory and return the RetryListener array
you would like to use for a given service.@Configuration
public class MyConfiguration {
@Bean
LoadBalancedRetryListenerFactory retryListenerFactory() {
return new LoadBalancedRetryListenerFactory() {
@Override
public RetryListener[] createRetryListeners(String service) {
return new RetryListener[]{new RetryListener() {
@Override
public <T, E extends Throwable> boolean open(RetryContext context, RetryCallback<T, E> callback) {
//TODO Do you business...
return true;
}
@Override
public <T, E extends Throwable> void close(RetryContext context, RetryCallback<T, E> callback, Throwable throwable) {
//TODO Do you business...
}
@Override
public <T, E extends Throwable> void onError(RetryContext context, RetryCallback<T, E> callback, Throwable throwable) {
//TODO Do you business...
}
}};
}
};
}
}Multiple RestTemplate objectsIf you want a RestTemplate that is not load balanced, create a RestTemplate
bean and inject it as normal. To access the load balanced RestTemplate use
the @LoadBalanced qualifier when you create your @Bean.Notice the @Primary annotation on the plain RestTemplate declaration in the example below, to disambiguate the unqualified @Autowired injection.@Configuration
public class MyConfiguration {
@LoadBalanced
@Bean
RestTemplate loadBalanced() {
return new RestTemplate();
}
@Primary
@Bean
RestTemplate restTemplate() {
return new RestTemplate();
}
}
public class MyClass {
@Autowired
private RestTemplate restTemplate;
@Autowired
@LoadBalanced
private RestTemplate loadBalanced;
public String doOtherStuff() {
return loadBalanced.getForObject("http://stores/stores", String.class);
}
public String doStuff() {
return restTemplate.getForObject("http://example.com", String.class);
}
}If you see errors like java.lang.IllegalArgumentException: Can not set org.springframework.web.client.RestTemplate field com.my.app.Foo.restTemplate to com.sun.proxy.$Proxy89 try injecting RestOperations instead or setting spring.aop.proxyTargetClass=true.Ignore Network InterfacesSometimes it is useful to ignore certain named network interfaces so they can be excluded from Service Discovery registration (eg. running in a Docker container). A list of regular expressions can be set that will cause the desired network interfaces to be ignored. The following configuration will ignore the "docker0" interface and all interfaces that start with "veth".application.ymlspring:
cloud:
inetutils:
ignoredInterfaces:
- docker0
- veth.*You can also force to use only specified network addresses using list of regular expressions:bootstrap.ymlspring:
cloud:
inetutils:
preferredNetworks:
- 192.168
- 10.0You can also force to use only site local addresses. See Inet4Address.html.isSiteLocalAddress() for more details what is site local address.application.ymlspring:
cloud:
inetutils:
useOnlySiteLocalInterfaces: trueHTTP Client FactoriesSpring Cloud Commons provides beans for creating both Apache HTTP clients (ApacheHttpClientFactory)
as well as OK HTTP clients (OkHttpClientFactory). The OkHttpClientFactory bean will only be created
if the OK HTTP jar is on the classpath. In addition, Spring Cloud Commons provides beans for creating
the connection managers used by both clients, ApacheHttpClientConnectionManagerFactory for the Apache
HTTP client and OkHttpClientConnectionPoolFactory for the OK HTTP client. You can provide
your own implementation of these beans if you would like to customize how the HTTP clients are created
in downstream projects. You can also disable the creation of these beans by setting
spring.cloud.httpclientfactories.apache.enabled or spring.cloud.httpclientfactories.ok.enabled to
false.Spring Cloud ConfigEdgware.SR4Spring Cloud Config provides server and client-side support for externalized configuration in a distributed system. With the Config Server you have a central place to manage external properties for applications across all environments. The concepts on both client and server map identically to the Spring Environment and PropertySource abstractions, so they fit very well with Spring applications, but can be used with any application running in any language. As an application moves through the deployment pipeline from dev to test and into production you can manage the configuration between those environments and be certain that applications have everything they need to run when they migrate. The default implementation of the server storage backend uses git so it easily supports labelled versions of configuration environments, as well as being accessible to a wide range of tooling for managing the content. It is easy to add alternative implementations and plug them in with Spring configuration.Quick StartStart the server:$ cd spring-cloud-config-server
$ ../mvnw spring-boot:runThe server is a Spring Boot application so you can run it from your
IDE instead if you prefer (the main class is
ConfigServerApplication). Then try out a client:$ curl localhost:8888/foo/development
{"name":"foo","label":"master","propertySources":[
{"name":"https://github.com/scratches/config-repo/foo-development.properties","source":{"bar":"spam"}},
{"name":"https://github.com/scratches/config-repo/foo.properties","source":{"foo":"bar"}}
]}The default strategy for locating property sources is to clone a git
repository (at spring.cloud.config.server.git.uri) and use it to
initialize a mini SpringApplication. The mini-application’s
Environment is used to enumerate property sources and publish them
via a JSON endpoint.The HTTP service has resources in the form:/{application}/{profile}[/{label}]
/{application}-{profile}.yml
/{label}/{application}-{profile}.yml
/{application}-{profile}.properties
/{label}/{application}-{profile}.propertieswhere the "application" is injected as the spring.config.name in the
SpringApplication (i.e. what is normally "application" in a regular
Spring Boot app), "profile" is an active profile (or comma-separated
list of properties), and "label" is an optional git label (defaults to
"master".)Spring Cloud Config Server pulls configuration for remote clients
from a git repository (which must be provided):spring:
cloud:
config:
server:
git:
uri: https://github.com/spring-cloud-samples/config-repoClient Side UsageTo use these features in an application, just build it as a Spring
Boot application that depends on spring-cloud-config-client (e.g. see
the test cases for the config-client, or the sample app). The most
convenient way to add the dependency is via a Spring Boot starter
org.springframework.cloud:spring-cloud-starter-config. There is also a
parent pom and BOM (spring-cloud-starter-parent) for Maven users and a
Spring IO version management properties file for Gradle and Spring CLI
users. Example Maven configuration:pom.xml <parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.10.RELEASE</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Edgware.SR2</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-config</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<!-- repositories also needed for snapshots and milestones -->Then you can create a standard Spring Boot application, like this simple HTTP server:@SpringBootApplication
@RestController
public class Application {
@RequestMapping("/")
public String home() {
return "Hello World!";
}
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}When it runs it will pick up the external configuration from the
default local config server on port 8888 if it is running. To modify
the startup behaviour you can change the location of the config server
using bootstrap.properties (like application.properties but for
the bootstrap phase of an application context), e.g.spring.cloud.config.uri: http://myconfigserver.comThe bootstrap properties will show up in the /env endpoint as a
high-priority property source, e.g.$ curl localhost:8080/env
{
"profiles":[],
"configService:https://github.com/spring-cloud-samples/config-repo/bar.properties":{"foo":"bar"},
"servletContextInitParams":{},
"systemProperties":{...},
...
}(a property source called "configService:<URL of remote
repository>/<file name>" contains the property "foo" with value
"bar" and is highest priority).the URL in the property source name is the git repository not
the config server URL.Spring Cloud Config ServerThe Server provides an HTTP, resource-based API for external
configuration (name-value pairs, or equivalent YAML content). The
server is easily embeddable in a Spring Boot application using the
@EnableConfigServer annotation. So this app is a config server:ConfigServer.java@SpringBootApplication
@EnableConfigServer
public class ConfigServer {
public static void main(String[] args) {
SpringApplication.run(ConfigServer.class, args);
}
}Like all Spring Boot apps it runs on port 8080 by default, but you
can switch it to the conventional port 8888 in various ways. The
easiest, which also sets a default configuration repository,
is by launching it with spring.config.name=configserver (there
is a configserver.yml in the Config Server jar). Another is
to use your own application.properties, e.g.application.propertiesserver.port: 8888
spring.cloud.config.server.git.uri: file://${user.home}/config-repowhere ${user.home}/config-repo is a git repository containing
YAML and properties files.in Windows you need an extra "/" in the file URL if it is
absolute with a drive prefix, e.g. file:///${user.home}/config-repo.Here’s a recipe for creating the git repository in the example
above:$ cd $HOME
$ mkdir config-repo
$ cd config-repo
$ git init .
$ echo info.foo: bar > application.properties
$ git add -A .
$ git commit -m "Add application.properties"using the local filesystem for your git repository is
intended for testing only. Use a server to host your
configuration repositories in production.the initial clone of your configuration repository will
be quick and efficient if you only keep text files in it. If you start
to store binary files, especially large ones, you may experience
delays on the first request for configuration and/or out of memory
errors in the server.Environment RepositoryWhere do you want to store the configuration data for the Config
Server? The strategy that governs this behaviour is the
EnvironmentRepository, serving Environment objects. This
Environment is a shallow copy of the domain from the Spring
Environment (including propertySources as the main feature). The
Environment resources are parametrized by three variables:{application} maps to "spring.application.name" on the client side;{profile} maps to "spring.profiles.active" on the client (comma separated list); and{label} which is a server side feature labelling a "versioned" set of config files.Repository implementations generally behave just like a Spring Boot
application loading configuration files from a "spring.config.name"
equal to the {application} parameter, and "spring.profiles.active"
equal to the {profiles} parameter. Precedence rules for profiles are
also the same as in a regular Boot application: active profiles take
precedence over defaults, and if there are multiple profiles the last
one wins (like adding entries to a Map).Example: a client application has this bootstrap configuration:bootstrap.ymlspring:
application:
name: foo
profiles:
active: dev,mysql(as usual with a Spring Boot application, these properties could also
be set as environment variables or command line arguments).If the repository is file-based, the server will create an
Environment from application.yml (shared between all clients), and
foo.yml (with foo.yml taking precedence). If the YAML files have
documents inside them that point to Spring profiles, those are applied
with higher precedence (in order of the profiles listed), and if
there are profile-specific YAML (or properties) files these are also
applied with higher precedence than the defaults. Higher precedence
translates to a PropertySource listed earlier in the
Environment. (These are the same rules as apply in a standalone
Spring Boot application.)Git BackendThe default implementation of EnvironmentRepository uses a Git
backend, which is very convenient for managing upgrades and physical
environments, and also for auditing changes. To change the location of
the repository you can set the "spring.cloud.config.server.git.uri"
configuration property in the Config Server (e.g. in
application.yml). If you set it with a file: prefix it should work
from a local repository so you can get started quickly and easily
without a server, but in that case the server operates directly on the
local repository without cloning it (it doesn’t matter if it’s not
bare because the Config Server never makes changes to the "remote"
repository). To scale the Config Server up and make it highly
available, you would need to have all instances of the server pointing
to the same repository, so only a shared file system would work. Even
in that case it is better to use the ssh: protocol for a shared
filesystem repository, so that the server can clone it and use a local
working copy as a cache.This repository implementation maps the {label} parameter of the
HTTP resource to a git label (commit id, branch name or tag). If the
git branch or tag name contains a slash ("/") then the label in the
HTTP URL should be specified with the special string "(_)" instead (to
avoid ambiguity with other URL paths). For example, if the label is
foo/bar, replacing the slash would result in a label that looks like
foo(_)bar. The inclusion of the special string "(_)" can also be
applied to the {application} parameter. Be careful with the brackets
in the URL if you are using a command line client like curl (e.g.
escape them from the shell with quotes '').Placeholders in Git URISpring Cloud Config Server supports a git repository URL with
placeholders for the {application} and {profile} (and {label} if
you need it, but remember that the label is applied as a git label
anyway). So you can easily support a "one repo per application" policy
using (for example):spring:
cloud:
config:
server:
git:
uri: https://github.com/myorg/{application}or a "one repo per profile" policy using a similar pattern but with
{profile}.Additionally, using the special string "(_)" within your
{application} parameters can enable support for multiple
organizations (for example):spring:
cloud:
config:
server:
git:
uri: https://github.com/{application}where {application} is provided at request time in the format
"organization(_)application".Pattern Matching and Multiple RepositoriesThere is also support for more complex requirements with pattern
matching on the application and profile name. The pattern format is a
comma-separated list of {application}/{profile} names with wildcards
(where a pattern beginning with a wildcard may need to be
quoted). Example:spring:
cloud:
config:
server:
git:
uri: https://github.com/spring-cloud-samples/config-repo
repos:
simple: https://github.com/simple/config-repo
special:
pattern: special*/dev*,*special*/dev*
uri: https://github.com/special/config-repo
local:
pattern: local*
uri: file:/home/configsvc/config-repoIf {application}/{profile} does not match any of the patterns, it
will use the default uri defined under
"spring.cloud.config.server.git.uri". In the above example, for the
"simple" repository, the pattern is simple/* (i.e. it only matches
one application named "simple" in all profiles). The "local"
repository matches all application names beginning with "local" in all
profiles (the /* suffix is added automatically to any pattern that
doesn’t have a profile matcher).the "one-liner" short cut used in the "simple" example above can
only be used if the only property to be set is the URI. If you need to
set anything else (credentials, pattern, etc.) you need to use the full
form.The pattern property in the repo is actually an array, so you can
use a YAML array (or [0], [1], etc. suffixes in properties files)
to bind to multiple patterns. You may need to do this if you are going
to run apps with multiple profiles. Example:spring:
cloud:
config:
server:
git:
uri: https://github.com/spring-cloud-samples/config-repo
repos:
development:
pattern:
- '*/development'
- '*/staging'
uri: https://github.com/development/config-repo
staging:
pattern:
- '*/qa'
- '*/production'
uri: https://github.com/staging/config-repoSpring Cloud will guess that a pattern containing a profile that
doesn’t end in * implies that you actually want to match a list of
profiles starting with this pattern (so */staging is a shortcut for
["*/staging", "*/staging,*"]). This is common where you need to run
apps in the "development" profile locally but also the "cloud" profile
remotely, for instance.Every repository can also optionally store config files in
sub-directories, and patterns to search for those directories can be
specified as searchPaths. For example at the top level:spring:
cloud:
config:
server:
git:
uri: https://github.com/spring-cloud-samples/config-repo
searchPaths: foo,bar*In this example the server searches for config files in the top level
and in the "foo/" sub-directory and also any sub-directory whose name
begins with "bar".By default the server clones remote repositories when configuration
is first requested. The server can be configured to clone the repositories
at startup. For example at the top level:spring:
cloud:
config:
server:
git:
uri: https://git/common/config-repo.git
repos:
team-a:
pattern: team-a-*
cloneOnStart: true
uri: http://git/team-a/config-repo.git
team-b:
pattern: team-b-*
cloneOnStart: false
uri: http://git/team-b/config-repo.git
team-c:
pattern: team-c-*
uri: http://git/team-a/config-repo.gitIn this example the server clones team-a’s config-repo on startup before it
accepts any requests. All other repositories will not be cloned until
configuration from the repository is requested.Setting a repository to be cloned when the Config Server starts up can
help to identify a misconfigured configuration source (e.g., an invalid
repository URI) quickly, while the Config Server is starting up. With
cloneOnStart not enabled for a configuration source, the Config Server may
start successfully with a misconfigured or invalid configuration source and
not detect an error until an application requests configuration from that
configuration source.AuthenticationTo use HTTP basic authentication on the remote repository add the
"username" and "password" properties separately (not in the URL),
e.g.spring:
cloud:
config:
server:
git:
uri: https://github.com/spring-cloud-samples/config-repo
username: trolley
password: strongpasswordIf you don’t use HTTPS and user credentials, SSH should also work out
of the box when you store keys in the default directories (~/.ssh)
and the uri points to an SSH location,
e.g. "git@github.com:configuration/cloud-configuration". It is important that an entry for the Git server be present in the ~/.ssh/known_hosts file and that it is in ssh-rsa format. Other formats (like ecdsa-sha2-nistp256) are not supported. To avoid surprises, you should ensure that only one entry is present in the known_hosts file for the Git server and that it is matching with the URL you provided to the config server. If you used a hostname in the URL, you want to have exactly that in the known_hosts file, not the IP.
The repository is accessed using JGit, so any documentation you find on
that should be applicable. HTTPS proxy settings can be set in
~/.git/config or in the same way as for any other JVM process via
system properties (-Dhttps.proxyHost and -Dhttps.proxyPort).If you don’t know where your ~/.git directory is use git config
--global to manipulate the settings (e.g. git config --global
http.sslVerify false).Authentication with AWS CodeCommitAWS CodeCommit authentication can also be
done. AWS CodeCommit uses an authentication helper when using Git from the command line. This helper is not
used with the JGit library, so a JGit CredentialProvider for AWS CodeCommit will be created if the Git
URI matches the AWS CodeCommit pattern. AWS CodeCommit URIs always look like
https://git-codecommit.${AWS_REGION}.amazonaws.com/${repopath}.If you provide a username and password with an AWS CodeCommit URI, then these must be
the AWS accessKeyId and secretAccessKey
to be used to access the repository. If you do not specify a username and password,
then the accessKeyId and secretAccessKey will be retrieved using the
AWS Default Credential Provider Chain.If your Git URI matches the CodeCommit URI pattern (above) then you must provide
valid AWS credentials in the username and password, or in one of the locations supported
by the default credential provider chain. AWS EC2 instances may use
IAM Roles for EC2 Instances.Note: The aws-java-sdk-core jar is an optional dependency. If the aws-java-sdk-core jar is not on your
classpath, then the AWS Code Commit credential provider will not be created regardless of the git server URI.Git SSH configuration using propertiesBy default, the JGit library used by Spring Cloud Config Server uses SSH configuration files such as ~/.ssh/known_hosts and /etc/ssh/ssh_config when connecting to Git repositories using an SSH URI.
In cloud environments such as Cloud Foundry, the local filesystem may be ephemeral or not easily accessible. For cases such as these, SSH configuration can be set using
Java properties. In order to activate property based SSH configuration, the property spring.cloud.config.server.git.ignoreLocalSshSettings must be set to true.
Example: spring:
cloud:
config:
server:
git:
uri: git@gitserver.com:team/repo1.git
ignoreLocalSshSettings: true
hostKey: someHostKey
hostKeyAlgorithm: ssh-rsa
privateKey: |
-----BEGIN RSA PRIVATE KEY-----
MIIEpgIBAAKCAQEAx4UbaDzY5xjW6hc9jwN0mX33XpTDVW9WqHp5AKaRbtAC3DqX
IXFMPgw3K45jxRb93f8tv9vL3rD9CUG1Gv4FM+o7ds7FRES5RTjv2RT/JVNJCoqF
ol8+ngLqRZCyBtQN7zYByWMRirPGoDUqdPYrj2yq+ObBBNhg5N+hOwKjjpzdj2Ud
1l7R+wxIqmJo1IYyy16xS8WsjyQuyC0lL456qkd5BDZ0Ag8j2X9H9D5220Ln7s9i
oezTipXipS7p7Jekf3Ywx6abJwOmB0rX79dV4qiNcGgzATnG1PkXxqt76VhcGa0W
DDVHEEYGbSQ6hIGSh0I7BQun0aLRZojfE3gqHQIDAQABAoIBAQCZmGrk8BK6tXCd
fY6yTiKxFzwb38IQP0ojIUWNrq0+9Xt+NsypviLHkXfXXCKKU4zUHeIGVRq5MN9b
BO56/RrcQHHOoJdUWuOV2qMqJvPUtC0CpGkD+valhfD75MxoXU7s3FK7yjxy3rsG
EmfA6tHV8/4a5umo5TqSd2YTm5B19AhRqiuUVI1wTB41DjULUGiMYrnYrhzQlVvj
5MjnKTlYu3V8PoYDfv1GmxPPh6vlpafXEeEYN8VB97e5x3DGHjZ5UrurAmTLTdO8
+AahyoKsIY612TkkQthJlt7FJAwnCGMgY6podzzvzICLFmmTXYiZ/28I4BX/mOSe
pZVnfRixAoGBAO6Uiwt40/PKs53mCEWngslSCsh9oGAaLTf/XdvMns5VmuyyAyKG
ti8Ol5wqBMi4GIUzjbgUvSUt+IowIrG3f5tN85wpjQ1UGVcpTnl5Qo9xaS1PFScQ
xrtWZ9eNj2TsIAMp/svJsyGG3OibxfnuAIpSXNQiJPwRlW3irzpGgVx/AoGBANYW
dnhshUcEHMJi3aXwR12OTDnaLoanVGLwLnkqLSYUZA7ZegpKq90UAuBdcEfgdpyi
PhKpeaeIiAaNnFo8m9aoTKr+7I6/uMTlwrVnfrsVTZv3orxjwQV20YIBCVRKD1uX
VhE0ozPZxwwKSPAFocpyWpGHGreGF1AIYBE9UBtjAoGBAI8bfPgJpyFyMiGBjO6z
FwlJc/xlFqDusrcHL7abW5qq0L4v3R+FrJw3ZYufzLTVcKfdj6GelwJJO+8wBm+R
gTKYJItEhT48duLIfTDyIpHGVm9+I1MGhh5zKuCqIhxIYr9jHloBB7kRm0rPvYY4
VAykcNgyDvtAVODP+4m6JvhjAoGBALbtTqErKN47V0+JJpapLnF0KxGrqeGIjIRV
cYA6V4WYGr7NeIfesecfOC356PyhgPfpcVyEztwlvwTKb3RzIT1TZN8fH4YBr6Ee
KTbTjefRFhVUjQqnucAvfGi29f+9oE3Ei9f7wA+H35ocF6JvTYUsHNMIO/3gZ38N
CPjyCMa9AoGBAMhsITNe3QcbsXAbdUR00dDsIFVROzyFJ2m40i4KCRM35bC/BIBs
q0TY3we+ERB40U8Z2BvU61QuwaunJ2+uGadHo58VSVdggqAo0BSkH58innKKt96J
69pcVH/4rmLbXdcmNYGm6iu+MlPQk4BUZknHSmVHIFdJ0EPupVaQ8RHT
-----END RSA PRIVATE KEY-----
SSH Configuration propertiesProperty NameRemarksignoreLocalSshSettingsIf true, use property based SSH config instead of file based. Must be set at as spring.cloud.config.server.git.ignoreLocalSshSettings, not inside a repository definition.privateKeyValid SSH private key. Must be set if ignoreLocalSshSettings is true and Git URI is SSH formathostKeyValid SSH host key. Must be set if hostKeyAlgorithm is also sethostKeyAlgorithmOne of ssh-dss, ssh-rsa, ecdsa-sha2-nistp256, ecdsa-sha2-nistp384 ,ecdsa-sha2-nistp521. Must be set if hostKey is also setproxyHostHostname for the ssh proxy connection. Is optional and used only when ignoreLocalSshSettings is trueproxyPortPort for the ssh proxy connection. Must be set if proxyHost is also setstrictHostKeyCheckingtrue or false. If false, ignore errors with host keyknownHostsFileLocation of custom .known_hosts filepreferredAuthenticationsOverride server authentication method order. This should allow evade login prompts if server has keyboard-interactive authentication before publickey method.
Placeholders in Git Search PathsSpring Cloud Config Server also supports a search path with
placeholders for the {application} and {profile} (and {label} if
you need it). Example:spring:
cloud:
config:
server:
git:
uri: https://github.com/spring-cloud-samples/config-repo
searchPaths: '{application}'searches the repository for files in the same name as the directory
(as well as the top level). Wildcards are also valid in a search
path with placeholders (any matching directory is included in the
search).Force pull in Git RepositoriesAs mentioned before Spring Cloud Config Server makes a clone of the
remote git repository and if somehow the local copy gets dirty (e.g.
folder content changes by OS process) so Spring Cloud Config Server
cannot update the local copy from remote repository.To solve this there is a force-pull property that will make Spring Cloud
Config Server force pull from remote repository if the local copy is dirty.
Example:spring:
cloud:
config:
server:
git:
uri: https://github.com/spring-cloud-samples/config-repo
force-pull: trueIf you have a multiple repositories configuration you can configure the
force-pull property per repository. Example:spring:
cloud:
config:
server:
git:
uri: https://git/common/config-repo.git
force-pull: true
repos:
team-a:
pattern: team-a-*
uri: http://git/team-a/config-repo.git
force-pull: true
team-b:
pattern: team-b-*
uri: http://git/team-b/config-repo.git
force-pull: true
team-c:
pattern: team-c-*
uri: http://git/team-a/config-repo.gitThe default value for force-pull property is false.Deleting untracked branches in Git RepositoriesAs Spring Cloud Config Server has a clone of the remote git repository
after check-outing branch to local repo (e.g fetching properties by label) it will keep this branch
forever or till the next server restart (which creates new local repo).
So there could be a case when remote branch is deleted but local copy of it is still available for fetching.
And if Spring Cloud Config Server client service starts with --spring.cloud.config.label=deletedRemoteBranch,master
it will fetch properties from deletedRemoteBranch local branch, but not from master.In order to keep local repository branches clean and up to remote - deleteUntrackedBranches property could be set.
It will make Spring Cloud Config Server force delete untracked branches from local repository.
Example:spring:
cloud:
config:
server:
git:
uri: https://github.com/spring-cloud-samples/config-repo
deleteUntrackedBranches: trueThe default value for deleteUntrackedBranches property is false.Version Control Backend Filesystem UseWith VCS based backends (git, svn) files are checked out or cloned to the local filesystem. By default they are put in the system temporary directory with a prefix of config-repo-. On linux, for example it could be /tmp/config-repo-<randomid>. Some operating systems routinely clean out temporary directories. This can lead to unexpected behaviour such as missing properties. To avoid this problem, change the directory Config Server uses, by setting spring.cloud.config.server.git.basedir or spring.cloud.config.server.svn.basedir to a directory that does not reside in the system temp structure.File System BackendThere is also a "native" profile in the Config Server that doesn’t use
Git, but just loads the config files from the local classpath or file
system (any static URL you want to point to with
"spring.cloud.config.server.native.searchLocations"). To use the
native profile just launch the Config Server with
"spring.profiles.active=native".Remember to use the file: prefix for file resources (the
default without a prefix is usually the classpath). Just as with any
Spring Boot configuration you can embed ${}-style environment
placeholders, but remember that absolute paths in Windows require an
extra "/", e.g. file:///${user.home}/config-repoThe default value of the searchLocations is identical to a
local Spring Boot application (so [classpath:/, classpath:/config,
file:./, file:./config]). This does not expose the
application.properties from the server to all clients because any
property sources present in the server are removed before being sent
to the client.A filesystem backend is great for getting started quickly and
for testing. To use it in production you need to be sure that the
file system is reliable, and shared across all instances of the
Config Server.The search locations can contain placeholders for {application},
{profile} and {label}. In this way you can segregate the
directories in the path, and choose a strategy that makes sense for
you (e.g. sub-directory per application, or sub-directory per
profile).If you don’t use placeholders in the search locations, this repository
also appends the {label} parameter of the HTTP resource to a suffix
on the search path, so properties files are loaded from each search
location and a subdirectory with the same name as the label (the
labelled properties take precedence in the Spring Environment). Thus
the default behaviour with no placeholders is the same as adding a
search location ending with /{label}/. For example file:/tmp/config
is the same as file:/tmp/config,file:/tmp/config/{label}. This behavior can be
disabled by setting spring.cloud.config.server.native.addLabelLocations=false.Vault BackendSpring Cloud Config Server also supports Vault as a backend.Vault is a tool for securely accessing secrets. A secret is anything
that you want to tightly control access to, such as API keys, passwords,
certificates, and more. Vault provides a unified interface to any secret,
while providing tight access control and recording a detailed audit log.For more information on Vault see the Vault quickstart guide.To enable the config server to use a Vault backend you can run your config server
with the vault profile. For example in your config server’s application.properties
you can add spring.profiles.active=vault.By default the config server will assume your Vault server is running at
http://127.0.0.1:8200. It also will assume that the name of backend
is secret and the key is application. All of these defaults can be
configured in your config server’s application.properties. Below is a
table of configurable Vault properties. All properties are prefixed with
spring.cloud.config.server.vault.NameDefault Valuehost127.0.0.1port8200schemehttpbackendsecretdefaultKeyapplicationprofileSeparator,All configurable properties can be found in
org.springframework.cloud.config.server.environment.VaultEnvironmentRepository.With your config server running you can make HTTP requests to the server to retrieve
values from the Vault backend. To do this you will need a token for your Vault server.First place some data in you Vault. For example$ vault write secret/application foo=bar baz=bam
$ vault write secret/myapp foo=myappsbarNow make the HTTP request to your config server to retrieve the values.$ curl -X "GET" "http://localhost:8888/myapp/default" -H "X-Config-Token: yourtoken"You should see a response similar to this after making the above request.{
"name":"myapp",
"profiles":[
"default"
],
"label":null,
"version":null,
"state":null,
"propertySources":[
{
"name":"vault:myapp",
"source":{
"foo":"myappsbar"
}
},
{
"name":"vault:application",
"source":{
"baz":"bam",
"foo":"bar"
}
}
]
}Multiple Properties SourcesWhen using Vault you can provide your applications with multiple properties sources.
For example, assume you have written data to the following paths in Vault.secret/myApp,dev
secret/myApp
secret/application,dev
secret/applicationProperties written to secret/application are available to
all applications using the Config Server. An
application with the name myApp would have any properties
written to secret/myApp and secret/application available to it.
When myApp has the dev profile enabled then properties written to
all of the above paths would be available to it, with properties in
the first path in the list taking priority over the others.Sharing Configuration With All ApplicationsFile Based RepositoriesWith file-based (i.e. git, svn and native) repositories, resources
with file names in application* are shared between all client
applications (so application.properties, application.yml,
application-*.properties etc.). You can use resources with these
file names to configure global defaults and have them overridden by
application-specific files as necessary.The #_property_overrides[property overrides] feature can also be used
for setting global defaults, and with placeholders applications are
allowed to override them locally.With the "native" profile (local file system backend) it is
recommended that you use an explicit search location that isn’t part
of the server’s own configuration. Otherwise the application*
resources in the default search locations are removed because they are
part of the server.Vault ServerWhen using Vault as a backend you can share configuration with
all applications by placing configuration in
secret/application. For example, if you run this Vault command$ vault write secret/application foo=bar baz=bamAll applications using the config server will have the properties
foo and baz available to them.JDBC BackendSpring Cloud Config Server supports JDBC (relation database) as a
backend for configuration properties. You can enable this feature by
adding spring-jdbc to the classpath, and using the "jdbc" profile,
or by adding a bean of type JdbcEnvironmentRepository. Spring Boot
will configure a data source if you include the right dependencies on
the classpath (see the user guide for more details on that).The database needs to have a table called "PROPERTIES" with columns
"APPLICATION", "PROFILE", "LABEL" (with the usual Environment
meaning), plus "KEY" and "VALUE" for the key and value pairs in
Properties style. All fields are of type String in Java, so you can
make them VARCHAR of whatever length you need. Property values
behave in the same way as they would if they came from Spring Boot
properties files named {application}-{profile}.properties, including
all the encryption and decryption, which will be applied as
post-processing steps (i.e. not in the repository implementation
directly).Composite Environment RepositoriesIn some scenarios you may wish to pull configuration data from multiple
environment repositories. To do this you can just enable
multiple profiles in your config server’s application properties or YAML file.
If, for example, you want to pull configuration data from a Git repository
as well as a SVN repository you would set the following properties for your
configuration server.spring:
profiles:
active: git, svn
cloud:
config:
server:
svn:
uri: file:///path/to/svn/repo
order: 2
git:
uri: file:///path/to/git/repo
order: 1In addition to each repo specifying a URI, you can also specify an order property.
The order property allows you to specify the priority order for all your repositories.
The lower the numerical value of the order property the higher priority it will have.
The priority order of a repository will help resolve any potential conflicts between
repositories that contain values for the same properties.Any type of failure when retrieving values from an environment repositoy
will result in a failure for the entire composite environment.When using a composite environment it is important that all repos contain
the same label(s). If you have an environment similar to the one above and you request
configuration data with the label master but the SVN
repo does not contain a branch called master the entire request will fail.Custom Composite Environment RepositoriesIt is also possible to provide your own EnvironmentRepository bean
to be included as part of a composite environment in addition to
using one of the environment repositories from Spring Cloud. To do this your bean
must implement the EnvironmentRepository interface. If you would like to control
the priority of you custom EnvironmentRepository within the composite
environment you should also implement the Ordered interface and override the
getOrdered method. If you do not implement the Ordered interface then your
EnvironmentRepository will be given the lowest priority.Property OverridesThe Config Server has an "overrides" feature that allows the operator
to provide configuration properties to all applications that cannot be
accidentally changed by the application using the normal Spring Boot
hooks. To declare overrides just add a map of name-value pairs to
spring.cloud.config.server.overrides. For examplespring:
cloud:
config:
server:
overrides:
foo: barwill cause all applications that are config clients to read foo=bar
independent of their own configuration. (Of course an application can
use the data in the Config Server in any way it likes, so overrides
are not enforceable, but they do provide useful default behaviour if
they are Spring Cloud Config clients.)Normal, Spring environment placeholders with "${}" can be escaped
(and resolved on the client) by using backslash ("\") to escape the
"$" or the "{", e.g. \${app.foo:bar} resolves to "bar" unless the
app provides its own "app.foo". Note that in YAML you don’t need to
escape the backslash itself, but in properties files you do, when you
configure the overrides on the server.You can change the priority of all overrides in the client to be more
like default values, allowing applications to supply their own values
in environment variables or System properties, by setting the flag
spring.cloud.config.overrideNone=true (default is false) in the
remote repository.Health IndicatorConfig Server comes with a Health Indicator that checks if the configured
EnvironmentRepository is working. By default it asks the EnvironmentRepository
for an application named app, the default profile and the default
label provided by the EnvironmentRepository implementation.You can configure the Health Indicator to check more applications
along with custom profiles and custom labels, e.g.spring:
cloud:
config:
server:
health:
repositories:
myservice:
label: mylabel
myservice-dev:
name: myservice
profiles: developmentYou can disable the Health Indicator by setting spring.cloud.config.server.health.enabled=false.SecurityYou are free to secure your Config Server in any way that makes sense
to you (from physical network security to OAuth2 bearer
tokens), and Spring Security and Spring Boot make it easy to do pretty
much anything.To use the default Spring Boot configured HTTP Basic security, just
include Spring Security on the classpath (e.g. through
spring-boot-starter-security). The default is a username of "user"
and a randomly generated password, which isn’t going to be very useful
in practice, so we recommend you configure the password (via
security.user.password) and encrypt it (see below for instructions
on how to do that).Encryption and DecryptionPrerequisites: to use the encryption and decryption features
you need the full-strength JCE installed in your JVM (it’s not there by default).
You can download the "Java Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy Files"
from Oracle, and follow instructions for installation (essentially replace the 2 policy files
in the JRE lib/security directory with the ones that you downloaded).If the remote property sources contain encrypted content (values
starting with {cipher}) they will be decrypted before sending to
clients over HTTP. The main advantage of this set up is that the
property values don’t have to be in plain text when they are "at rest"
(e.g. in a git repository). If a value cannot be decrypted it is
removed from the property source and an additional property is added
with the same key, but prefixed with "invalid." and a value that means
"not applicable" (usually "<n/a>"). This is largely to prevent cipher
text being used as a password and accidentally leaking.If you are setting up a remote config repository for config client
applications it might contain an application.yml like this, for
instance:application.ymlspring:
datasource:
username: dbuser
password: '{cipher}FKSAJDFGYOS8F7GLHAKERGFHLSAJ'Encrypted values in a .properties file must not be wrapped in quotes, otherwise the value will not be decrypted:application.propertiesspring.datasource.username: dbuser
spring.datasource.password: {cipher}FKSAJDFGYOS8F7GLHAKERGFHLSAJYou can safely push this plain text to a shared git repository and the
secret password is protected.The server also exposes /encrypt and /decrypt endpoints (on the
assumption that these will be secured and only accessed by authorized
agents). If you are editing a remote config file you can use the Config Server
to encrypt values by POSTing to the /encrypt endpoint, e.g.$ curl localhost:8888/encrypt -d mysecret
682bc583f4641835fa2db009355293665d2647dade3375c0ee201de2a49f7bdaIf the value you are encrypting has characters in it that need to be URL encoded you should use
the --data-urlencode option to curl to make sure they are encoded properly.Be sure not to include any of the curl command statistics in the encrypted value.
Outputting the value to a file can help avoid this problem.The inverse operation is also available via /decrypt (provided the server is
configured with a symmetric key or a full key pair):$ curl localhost:8888/decrypt -d 682bc583f4641835fa2db009355293665d2647dade3375c0ee201de2a49f7bda
mysecretIf you are testing like this with curl, then use
--data-urlencode (instead of -d) or set an explicit Content-Type:
text/plain to make sure curl encodes the data correctly when there
are special characters ('+' is particularly tricky).Take the encrypted value and add the {cipher} prefix before you put
it in the YAML or properties file, and before you commit and push it
to a remote, potentially insecure store.The /encrypt and /decrypt endpoints also both accept paths of the
form /*/{name}/{profiles} which can be used to control cryptography
per application (name) and profile when clients call into the main
Environment resource.to control the cryptography in this granular way you must also
provide a @Bean of type TextEncryptorLocator that creates a
different encryptor per name and profiles. The one that is provided
by default does not do this (so all encryptions use the same key).The spring command line client (with Spring Cloud CLI extensions
installed) can also be used to encrypt and decrypt, e.g.$ spring encrypt mysecret --key foo
682bc583f4641835fa2db009355293665d2647dade3375c0ee201de2a49f7bda
$ spring decrypt --key foo 682bc583f4641835fa2db009355293665d2647dade3375c0ee201de2a49f7bda
mysecretTo use a key in a file (e.g. an RSA public key for encryption) prepend
the key value with "@" and provide the file path, e.g.$ spring encrypt mysecret --key @${HOME}/.ssh/id_rsa.pub
AQAjPgt3eFZQXwt8tsHAVv/QHiY5sI2dRcR+...The key argument is mandatory (despite having a -- prefix).Key ManagementThe Config Server can use a symmetric (shared) key or an asymmetric
one (RSA key pair). The asymmetric choice is superior in terms of
security, but it is often more convenient to use a symmetric key since
it is just a single property value to configure in the bootstrap.properties.To configure a symmetric key you just need to set encrypt.key to a
secret String (or use an enviroment variable ENCRYPT_KEY to keep it
out of plain text configuration files).To configure an asymmetric key you can either set the key as a
PEM-encoded text value (in encrypt.key), or via a keystore (e.g. as
created by the keytool utility that comes with the JDK). The
keystore properties are encrypt.keyStore.* with * equal tolocation (a Resource location),password (to unlock the keystore) andalias (to identify which key in the store is to be
used).The encryption is done with the public key, and a private key is
needed for decryption. Thus in principle you can configure only the
public key in the server if you only want to do encryption (and are
prepared to decrypt the values yourself locally with the private
key). In practice you might not want to do that because it spreads the
key management process around all the clients, instead of
concentrating it in the server. On the other hand it’s a useful option
if your config server really is relatively insecure and only a
handful of clients need the encrypted properties.Creating a Key Store for TestingTo create a keystore for testing you can do something like this:$ keytool -genkeypair -alias mytestkey -keyalg RSA \
-dname "CN=Web Server,OU=Unit,O=Organization,L=City,S=State,C=US" \
-keypass changeme -keystore server.jks -storepass letmeinPut the server.jks file in the classpath (for instance) and then in
your bootstrap.yml for the Config Server:encrypt:
keyStore:
location: classpath:/server.jks
password: letmein
alias: mytestkey
secret: changemeUsing Multiple Keys and Key RotationIn addition to the {cipher} prefix in encrypted property values, the
Config Server looks for {name:value} prefixes (zero or many) before
the start of the (Base64 encoded) cipher text. The keys are passed to
a TextEncryptorLocator which can do whatever logic it needs to
locate a TextEncryptor for the cipher. If you have configured a
keystore (encrypt.keystore.location) the default locator will look
for keys in the store with aliases as supplied by the "key" prefix,
i.e. with a cipher text like this:foo:
bar: `{cipher}{key:testkey}...`the locator will look for a key named "testkey". A secret can also be
supplied via a {secret:…} value in the prefix, but if it is not
the default is to use the keystore password (which is what you get
when you build a keytore and don’t specify a secret). If you do
supply a secret it is recommended that you also encrypt the secrets
using a custom SecretLocator.Key rotation is hardly ever necessary on cryptographic grounds if the
keys are only being used to encrypt a few bytes of configuration data
(i.e. they are not being used elsewhere), but occasionally you might
need to change the keys if there is a security breach for instance. In
that case all the clients would need to change their source config
files (e.g. in git) and use a new {key:…} prefix in all the
ciphers, checking beforehand of course that the key alias is available
in the Config Server keystore.the {name:value} prefixes can also be added to plaintext posted
to the /encrypt endpoint, if you want to let the Config Server
handle all encryption as well as decryption.Serving Encrypted PropertiesSometimes you want the clients to decrypt the configuration locally,
instead of doing it in the server. In that case you can still have
/encrypt and /decrypt endpoints (if you provide the encrypt.*
configuration to locate a key), but you need to explicitly switch off
the decryption of outgoing properties by placing
spring.cloud.config.server.encrypt.enabled=false in bootstrap.[yml|properties].
If you don’t care about the endpoints, then it should work if you configure neither the
key nor the enabled flag.Serving Alternative FormatsThe default JSON format from the environment endpoints is perfect for
consumption by Spring applications because it maps directly onto the
Environment abstraction. If you prefer you can consume the same data
as YAML or Java properties by adding a suffix to the resource path
(".yml", ".yaml" or ".properties"). This can be useful for consumption
by applications that do not care about the structure of the JSON
endpoints, or the extra metadata they provide, for example an
application that is not using Spring might benefit from the simplicity
of this approach.The YAML and properties representations have an additional flag
(provided as a boolean query parameter resolvePlaceholders) to
signal that placeholders in the source documents, in the standard
Spring ${…} form, should be resolved in the output where possible
before rendering. This is a useful feature for consumers that don’t
know about the Spring placeholder conventions.there are limitations in using the YAML or properties formats,
mainly in relation to the loss of metadata. The JSON is structured as
an ordered list of property sources, for example, with names that
correlate with the source. The YAML and properties forms are coalesced
into a single map, even if the origin of the values has multiple
sources, and the names of the original source files are lost. The YAML
representation is not necessarily a faithful representation of the
YAML source in a backing repository either: it is constructed from a
list of flat property sources, and assumptions have to be made about
the form of the keys.Serving Plain TextInstead of using the Environment abstraction (or one of the
alternative representations of it in YAML or properties format) your
applications might need generic plain text configuration files,
tailored to their environment. The Config Server provides these
through an additional endpoint at /{name}/{profile}/{label}/{path}
where "name", "profile" and "label" have the same meaning as the
regular environment endpoint, but "path" is a file name
(e.g. log.xml). The source files for this endpoint are located in
the same way as for the environment endpoints: the same search path is
used as for properties or YAML files, but instead of aggregating all
matching resources, only the first one to match is returned.After a resource is located, placeholders in the normal format
(${…}) are resolved using the effective Environment for the
application name, profile and label supplied. In this way the resource
endpoint is tightly integrated with the environment
endpoints. Example, if you have this layout for a GIT (or SVN)
repository:application.yml
nginx.confwhere nginx.conf looks like this:server {
listen 80;
server_name ${nginx.server.name};
}and application.yml like this:nginx:
server:
name: example.com
---
spring:
profiles: development
nginx:
server:
name: develop.comthen the /foo/default/master/nginx.conf resource looks like this:server {
listen 80;
server_name example.com;
}and /foo/development/master/nginx.conf like this:server {
listen 80;
server_name develop.com;
}Just like the source files for environment configuration, the
"profile" is used to resolve the file name, so if you want a
profile-specific file then /*/development/*/logback.xml will be
resolved by a file called logback-development.xml (in preference
to logback.xml).If you do not want to supply the label and let the server use the default label, you can supply a useDefaultLabel request parameter. So, the above example for the default profile could look like /foo/default/nginx.conf?useDefaultLabel.Embedding the Config ServerThe Config Server runs best as a standalone application, but if you
need to you can embed it in another application. Just use the
@EnableConfigServer annotation. An optional property that can be
useful in this case is spring.cloud.config.server.bootstrap which is
a flag to indicate that the server should configure itself from its
own remote repository. The flag is off by default because it can delay
startup, but when embedded in another application it makes sense to
initialize the same way as any other application.It should be obvious, but remember that if you use the bootstrap
flag the config server will need to have its name and repository URI
configured in bootstrap.yml.To change the location of the server endpoints you can (optionally)
set spring.cloud.config.server.prefix, e.g. "/config", to serve the
resources under a prefix. The prefix should start but not end with a
"/". It is applied to the @RequestMappings in the Config Server
(i.e. underneath the Spring Boot prefixes server.servletPath and
server.contextPath).If you want to read the configuration for an application directly from
the backend repository (instead of from the config server) that’s
basically an embedded config server with no endpoints. You can switch
off the endpoints entirely if you don’t use the @EnableConfigServer
annotation (just set spring.cloud.config.server.bootstrap=true).Push Notifications and Spring Cloud BusMany source code repository providers (like Github, Gitlab or Bitbucket
for instance) will notify you of changes in a repository through a
webhook. You can configure the webhook via the provider’s user
interface as a URL and a set of events in which you are
interested. For instance
Github
will POST to the webhook with a JSON body containing a list of
commits, and a header "X-Github-Event" equal to "push". If you add a
dependency on the spring-cloud-config-monitor library and activate
the Spring Cloud Bus in your Config Server, then a "/monitor" endpoint
is enabled.When the webhook is activated the Config Server will send a
RefreshRemoteApplicationEvent targeted at the applications it thinks
might have changed. The change detection can be strategized, but by
default it just looks for changes in files that match the application
name (e.g. "foo.properties" is targeted at the "foo" application, and
"application.properties" is targeted at all applications). The strategy
if you want to override the behaviour is PropertyPathNotificationExtractor
which accepts the request headers and body as parameters and returns a list
of file paths that changed.The default configuration works out of the box with Github, Gitlab or
Bitbucket. In addition to the JSON notifications from Github, Gitlab
or Bitbucket you can trigger a change notification by POSTing to
"/monitor" with a form-encoded body parameters path={name}. This will
broadcast to applications matching the "{name}" pattern (can contain
wildcards).the RefreshRemoteApplicationEvent will only be transmitted if
the spring-cloud-bus is activated in the Config Server and in the
client application.the default configuration also detects filesystem changes in
local git repositories (the webhook is not used in that case but as
soon as you edit a config file a refresh will be broadcast).Spring Cloud Config ClientA Spring Boot application can take immediate advantage of the Spring
Config Server (or other external property sources provided by the
application developer), and it will also pick up some additional
useful features related to Environment change events.Config First BootstrapThis is the default behaviour for any application which has the Spring
Cloud Config Client on the classpath. When a config client starts up
it binds to the Config Server (via the bootstrap configuration
property spring.cloud.config.uri) and initializes Spring
Environment with remote property sources.The net result of this is that all client apps that want to consume
the Config Server need a bootstrap.yml (or an environment variable)
with the server address in spring.cloud.config.uri (defaults to
"http://localhost:8888").Discovery First BootstrapIf you are using a `DiscoveryClient implementation, such as Spring Cloud Netflix
and Eureka Service Discovery or Spring Cloud Consul (Spring Cloud Zookeeper does
not support this yet), then you can have the Config Server register with the
Discovery Service if you want to, but in the default "Config First" mode,
clients won’t be able to take advantage of the registration.If you prefer to use DiscoveryClient to locate the Config Server, you can do
that by setting spring.cloud.config.discovery.enabled=true (default
"false"). The net result of that is that client apps all need a
bootstrap.yml (or an environment variable) with the appropriate discovery
configuration. For example, with Spring Cloud Netflix, you need to define the
Eureka server address, e.g. in eureka.client.serviceUrl.defaultZone. The
price for using this option is an extra network round trip on start up to
locate the service registration. The benefit is that the Config Server
can change its co-ordinates, as long as the Discovery Service is a fixed point. The
default service id is "configserver" but you can change that on the
client with spring.cloud.config.discovery.serviceId (and on the server
in the usual way for a service, e.g. by setting spring.application.name).The discovery client implementations all support some kind of metadata
map (e.g. for Eureka we have eureka.instance.metadataMap). Some
additional properties of the Config Server may need to be configured
in its service registration metadata so that clients can connect
correctly. If the Config Server is secured with HTTP Basic you can
configure the credentials as "username" and "password". And if the
Config Server has a context path you can set "configPath". Example,
for a Config Server that is a Eureka client:bootstrap.ymleureka:
instance:
...
metadataMap:
user: osufhalskjrtl
password: lviuhlszvaorhvlo5847
configPath: /configConfig Client Fail FastIn some cases, it may be desirable to fail startup of a service if
it cannot connect to the Config Server. If this is the desired
behavior, set the bootstrap configuration property
spring.cloud.config.failFast=true and the client will halt with
an Exception.Config Client RetryIf you expect that the config server may occasionally be unavailable when
your app starts, you can ask it to keep trying after a failure. First you need
to set spring.cloud.config.failFast=true, and then 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.config.retry.* configuration properties.To take full control of the retry add a @Bean of type
RetryOperationsInterceptor with id "configServerRetryInterceptor". Spring
Retry has a RetryInterceptorBuilder that makes it easy to create one.Locating Remote Configuration ResourcesThe Config Service serves property sources from /{name}/{profile}/{label}, where the default bindings in the client app are"name" = ${spring.application.name}"profile" = ${spring.profiles.active} (actually Environment.getActiveProfiles())"label" = "master"All of them can be overridden by setting spring.cloud.config.*
(where * is "name", "profile" or "label"). The "label" is useful for
rolling back to previous versions of configuration; with the default
Config Server implementation it can be a git label, branch name or
commit id. Label can also be provided as a comma-separated list, in
which case the items in the list are tried on-by-one until one succeeds.
This can be useful when working on a feature branch, for instance,
when you might want to align the config label with your branch, but
make it optional (e.g. spring.cloud.config.label=myfeature,develop).SecurityIf you use HTTP Basic security on the server then clients just need to
know the password (and username if it isn’t the default). You can do
that via the config server URI, or via separate username and password
properties, e.g.bootstrap.ymlspring:
cloud:
config:
uri: https://user:secret@myconfig.mycompany.comorbootstrap.ymlspring:
cloud:
config:
uri: https://myconfig.mycompany.com
username: user
password: secretThe spring.cloud.config.password and spring.cloud.config.username
values override anything that is provided in the URI.If you deploy your apps on Cloud Foundry then the best way to provide
the password is through service credentials, e.g. in the URI, since
then it doesn’t even need to be in a config file. An example which
works locally and for a user-provided service on Cloud Foundry named
"configserver":bootstrap.ymlspring:
cloud:
config:
uri: ${vcap.services.configserver.credentials.uri:http://user:password@localhost:8888}If you use another form of security you might need to provide a
RestTemplate to the ConfigServicePropertySourceLocator (e.g. by
grabbing it in the bootstrap context and injecting one).Health IndicatorThe Config Client supplies a Spring Boot Health Indicator that attempts to load configuration from Config Server. The health indicator can be disabled by setting health.config.enabled=false. The response is also cached for performance reasons. The default cache time to live is 5 minutes. To change that value set the health.config.time-to-live property (in milliseconds).Providing A Custom RestTemplateIn some cases you might need to customize the requests made to the config server from
the client. Typically this involves passing special Authorization headers to
authenticate requests to the server. To provide a custom RestTemplate follow the
steps below.Create a new configuration bean with an implementation of PropertySourceLocator.CustomConfigServiceBootstrapConfiguration.java@Configuration
public class CustomConfigServiceBootstrapConfiguration {
@Bean
public ConfigServicePropertySourceLocator configServicePropertySourceLocator() {
ConfigClientProperties clientProperties = configClientProperties();
ConfigServicePropertySourceLocator configServicePropertySourceLocator = new ConfigServicePropertySourceLocator(clientProperties);
configServicePropertySourceLocator.setRestTemplate(customRestTemplate(clientProperties));
return configServicePropertySourceLocator;
}
}In resources/META-INF create a file called
spring.factories and specify your custom configuration.spring.factoriesorg.springframework.cloud.bootstrap.BootstrapConfiguration = com.my.config.client.CustomConfigServiceBootstrapConfigurationVaultWhen using Vault as a backend to your config server the client will need to
supply a token for the server to retrieve values from Vault. This token
can be provided within the client by setting spring.cloud.config.token
in bootstrap.yml.bootstrap.ymlspring:
cloud:
config:
token: YourVaultTokenVaultNested Keys In VaultVault supports the ability to nest keys in a value stored in Vault. For exampleecho -n '{"appA": {"secret": "appAsecret"}, "bar": "baz"}' | vault write secret/myapp -This command will write a JSON object to your Vault. To access these values in Spring
you would use the traditional dot(.) annotation. For example@Value("${appA.secret}")
String name = "World";The above code would set the name variable to appAsecret.Spring Cloud NetflixEdgware.SR4This project provides Netflix OSS 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 battle-tested Netflix components. The
patterns provided include Service Discovery (Eureka), Circuit Breaker (Hystrix),
Intelligent Routing (Zuul) and Client Side Load Balancing (Ribbon).Service Discovery: Eureka ClientsService 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. Eureka is the Netflix Service Discovery Server and Client. The server can be configured and deployed to be highly available, with each server replicating state about the registered services to the others.How to Include Eureka ClientTo include Eureka Client in your project use the starter with group org.springframework.cloud
and artifact id spring-cloud-starter-netflix-eureka-client. See the Spring Cloud Project page
for details on setting up your build system with the current Spring Cloud Release Train.Registering with EurekaWhen a client registers with Eureka, it provides meta-data about itself
such as host and port, health indicator URL, home page etc. Eureka
receives heartbeat messages from each instance belonging to a service.
If the heartbeat fails over a configurable timetable, the instance is
normally removed from the registry.Example eureka client:@Configuration
@ComponentScan
@EnableAutoConfiguration
@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). By having spring-cloud-starter-netflix-eureka-client
on the classpath your application will automatically register with the Eureka Server. Configuration is required to
locate the Eureka server. Example:application.ymleureka:
client:
serviceUrl:
defaultZone: http://localhost:8761/eureka/where "defaultZone" is a magic string fallback value that provides the
service URL for any client that doesn’t express a preference
(i.e. it’s a useful default).The default application name (service ID), virtual host and non-secure
port, taken from the Environment, are ${spring.application.name},
${spring.application.name} and ${server.port} respectively.Having spring-cloud-starter-netflix-eureka-client on the classpath
makes the app into both a Eureka "instance"
(i.e. it registers itself) and a "client" (i.e. it can query the
registry to locate other services). The instance behaviour is driven
by eureka.instance.* configuration keys, but the defaults will be
fine if you ensure that your application has a
spring.application.name (this is the default for the Eureka service
ID, or VIP).See EurekaInstanceConfigBean and EurekaClientConfigBean for more details of the configurable options.To disable the Eureka Discovery Client you can set eureka.client.enabled to false.Authenticating with the Eureka ServerHTTP basic authentication will be automatically added to your eureka
client if one of the eureka.client.serviceUrl.defaultZone URLs has
credentials embedded in it (curl style, like
http://user:password@localhost:8761/eureka). For more complex needs
you can create a @Bean of type DiscoveryClientOptionalArgs and
inject ClientFilter instances into it, all of which will be applied
to the calls from the client to the server.Because of a limitation in Eureka it isn’t possible to support
per-server basic auth credentials, so only the first set that are
found will be used.Status Page and Health IndicatorThe status page and health indicators for a Eureka instance default to
"/info" and "/health" respectively, which are the default locations of
useful endpoints 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) Example:application.ymleureka:
instance:
statusPageUrlPath: ${server.servletPath}/info
healthCheckUrlPath: ${server.servletPath}/healthThese links show up in the metadata that is consumed by clients, and
used in some scenarios to decide whether to send requests to your
application, so it’s helpful if they are accurate.In Dalston it was also required to set the status and health check URLs when changing
that management context path. This requirement was removed beinging in Edgware.Registering a Secure ApplicationIf your app wants to be contacted over HTTPS you can set two flags in
the EurekaInstanceConfig, vizeureka.instance.[nonSecurePortEnabled,securePortEnabled]=[false,true]
respectively. This will make Eureka publish instance information
showing an explicit preference for secure communication. The Spring
Cloud DiscoveryClient will always return a URI starting with https for a
service configured this way, and the Eureka (native) instance
information will have a secure health check URL.Because of the way
Eureka works internally, it will still publish a non-secure URL for
status and home page unless you also override those explicitly.
You can use placeholders to configure the eureka instance urls,
e.g.application.ymleureka:
instance:
statusPageUrl: https://${eureka.hostname}/info
healthCheckUrl: https://${eureka.hostname}/health
homePageUrl: https://${eureka.hostname}/(Note that ${eureka.hostname} is a native placeholder only available
in later versions of Eureka. You could achieve the same thing with
Spring placeholders as well, e.g. using ${eureka.instance.hostName}.)If your app is running behind a proxy, and the SSL termination
is in the proxy (e.g. if you run in Cloud Foundry or other platforms
as a service) then you will need to ensure that the proxy "forwarded"
headers are intercepted and handled by the application. An embedded
Tomcat container in a Spring Boot app does this automatically if it
has explicit configuration for the 'X-Forwarded-\*` headers. A sign
that you got this wrong will be that the links rendered by your app to
itself will be wrong (the wrong host, port or protocol).Eureka’s Health ChecksBy default, Eureka uses the client heartbeat to determine if a client is up.
Unless specified otherwise the Discovery Client will not propagate the
current health check status of the application per the Spring Boot Actuator. Which means
that after successful registration Eureka will always announce that the
application is in 'UP' state. This behaviour can be altered by enabling
Eureka health checks, which results in propagating application status
to Eureka. As a consequence every other application won’t be sending
traffic to application in state other then 'UP'.application.ymleureka:
client:
healthcheck:
enabled: trueeureka.client.healthcheck.enabled=true should only be set in application.yml. Setting the value in bootstrap.yml will cause undesirable side effects like registering in eureka with an UNKNOWN status.If you require more control over the health checks, you may consider
implementing your own com.netflix.appinfo.HealthCheckHandler.Eureka Metadata for Instances and ClientsIt’s worth spending a bit of time understanding how the Eureka metadata works, so you can use it in a way that makes sense in your platform. There is standard metadata for things like hostname, IP address, port numbers, status page and health check. These are published in the service registry and used by clients to contact the services in a straightforward way. Additional metadata can be added to the instance registration in the eureka.instance.metadataMap, and this will be accessible in the remote clients, but in general will not change the behaviour of the client, unless it is made aware of the meaning of the metadata. There are a couple of special cases described below where Spring Cloud already assigns meaning to the metadata map.Using Eureka on Cloud FoundryCloud Foundry has a global router so that all instances of the same app have the same hostname (it’s the same in other PaaS solutions with a similar architecture). This isn’t necessarily a barrier to using Eureka, but if you use the router (recommended, or even mandatory depending on the way your platform was set up), you need to explicitly set the hostname and port numbers (secure or non-secure) so that they use the router. You might also want to use instance metadata so you can distinguish between the instances on the client (e.g. in a custom load balancer). By default, the eureka.instance.instanceId is vcap.application.instance_id. For example:application.ymleureka:
instance:
hostname: ${vcap.application.uris[0]}
nonSecurePort: 80Depending on the way the security rules are set up in your Cloud Foundry instance, you might be able to register and use the IP address of the host VM for direct service-to-service calls. This feature is not (yet) available on Pivotal Web Services (PWS).Using Eureka on AWSIf the application is planned to be deployed to an AWS cloud, then the Eureka instance will have to be configured to be AWS aware and this can be done by customizing the EurekaInstanceConfigBean the following way:@Bean
@Profile("!default")
public EurekaInstanceConfigBean eurekaInstanceConfig(InetUtils inetUtils) {
EurekaInstanceConfigBean b = new EurekaInstanceConfigBean(inetUtils);
AmazonInfo info = AmazonInfo.Builder.newBuilder().autoBuild("eureka");
b.setDataCenterInfo(info);
return b;
}Changing the Eureka Instance IDA vanilla Netflix Eureka instance is registered with an ID that is equal to its host name (i.e. only one service per host). Spring Cloud Eureka provides a sensible default that looks like this: ${spring.cloud.client.hostname}:${spring.application.name}:${spring.application.instance_id:${server.port}}}. For example myhost:myappname:8080.Using Spring Cloud you can override this by providing a unique identifier in eureka.instance.instanceId. For example:application.ymleureka:
instance:
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 Cloud Foundry the vcap.application.instance_id will be
populated automatically in a Spring Boot application, so the
random value will not be needed.Using the EurekaClientOnce you have an app that is a discovery client you can use it to
discover service instances from the Eureka Server. One way to do that is to use the native
com.netflix.discovery.EurekaClient (as opposed to the Spring
Cloud DiscoveryClient), e.g.@Autowired
private EurekaClient discoveryClient;
public String serviceUrl() {
InstanceInfo instance = discoveryClient.getNextServerFromEureka("STORES", false);
return instance.getHomePageUrl();
}Don’t use the EurekaClient in @PostConstruct method or in a
@Scheduled method (or anywhere where the ApplicationContext might
not be started yet). It is initialized in a SmartLifecycle (with
phase=0) so the earliest you can rely on it being available is in
another SmartLifecycle with higher phase.EurekaClient without JerseyBy default, EurekaClient uses Jersey for HTTP communication. If you wish
to avoid dependencies from Jersey, you can exclude it from your dependencies.
Spring Cloud will auto configure a transport client based on Spring
RestTemplate.<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-eureka</artifactId>
<exclusions>
<exclusion>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-client</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-core</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.jersey.contribs</groupId>
<artifactId>jersey-apache-client4</artifactId>
</exclusion>
</exclusions>
</dependency>Alternatives to the native Netflix EurekaClientYou don’t have to use the raw Netflix EurekaClient and usually it
is more convenient to use it behind a wrapper of some sort. Spring
Cloud has support for Feign (a REST client
builder) and also Spring RestTemplate using
the logical Eureka service identifiers (VIPs) instead of physical
URLs. To configure Ribbon with a fixed list of physical servers you
can simply set <client>.ribbon.listOfServers to a comma-separated
list of physical addresses (or hostnames), where <client> is the ID
of the client.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;
}Why is it so Slow to Register a Service?Being an instance also involves a periodic heartbeat to the registry
(via the client’s serviceUrl) with default duration 30 seconds. A
service is not available for discovery by clients until the instance,
the server and the client all have the same metadata in their local
cache (so it could take 3 heartbeats). You can change the period using
eureka.instance.leaseRenewalIntervalInSeconds and this will speed up
the process of getting clients connected to other services. In
production it’s probably better to stick with the default because
there are some computations internally in the server that make
assumptions about the lease renewal period.ZonesIf you have deployed Eureka clients to multiple zones than you may prefer that
those clients leverage services within the same zone before trying services
in another zone. To do this you need to configure your Eureka clients correctly.First, you need to make sure you have Eureka servers deployed to each zone and that
they are peers of each other. See the section on zones and regions
for more information.Next you need to tell Eureka which zone your service is in. You can do this using
the metadataMap property. For example if service 1 is deployed to both zone 1
and zone 2 you would need to set the following Eureka properties in service 1Service 1 in Zone 1eureka.instance.metadataMap.zone = zone1
eureka.client.preferSameZoneEureka = trueService 1 in Zone 2eureka.instance.metadataMap.zone = zone2
eureka.client.preferSameZoneEureka = trueService Discovery: Eureka ServerHow to Include Eureka ServerTo include Eureka Server in your project use the starter with group org.springframework.cloud
and artifact id spring-cloud-starter-netflix-eureka-server. See the Spring Cloud Project page
for details on setting up your build system with the current Spring Cloud Release Train.How to Run a Eureka ServerExample eureka server;@SpringBootApplication
@EnableEurekaServer
public class Application {
public static void main(String[] args) {
new SpringApplicationBuilder(Application.class).web(true).run(args);
}
}The server has a home page with a UI, and HTTP API endpoints per the
normal Eureka functionality under /eureka/*.Eureka background reading: see flux capacitor and google group discussion.Due to Gradle’s dependency resolution rules and the lack of a parent bom feature, simply depending on spring-cloud-starter-netflix-eureka-server can cause failures on application startup. To remedy this the Spring Boot Gradle plugin must be added and the Spring cloud starter parent bom must be imported like so:build.gradlebuildscript {
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.5.10.RELEASE")
}
}
apply plugin: "spring-boot"
dependencyManagement {
imports {
mavenBom "org.springframework.cloud:spring-cloud-dependencies:Edgware.SR2"
}
}High Availability, Zones and RegionsThe Eureka server does not have a backend store, but the service
instances in the registry all have to send heartbeats to keep their
registrations up to date (so this can be done in memory). Clients also
have an in-memory cache of eureka registrations (so they don’t have to
go to the registry for every single request to a service).By default every Eureka server is also a Eureka client and requires
(at least one) service URL to locate a peer. If you don’t provide it
the service will run and work, but it will shower your logs with a lot
of noise about not being able to register with the peer.See also below for details of Ribbon
support on the client side for Zones and Regions.Standalone ModeThe combination of the two caches (client and server) and the
heartbeats make a standalone Eureka server fairly resilient to
failure, as long as there is some sort of monitor or elastic runtime
keeping it alive (e.g. Cloud Foundry). In standalone mode, you might
prefer to switch off the client side behaviour, so it doesn’t keep
trying and failing to reach its peers. Example:application.yml (Standalone Eureka Server)server:
port: 8761
eureka:
instance:
hostname: localhost
client:
registerWithEureka: false
fetchRegistry: false
serviceUrl:
defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/Notice that the serviceUrl is pointing to the same host as the local
instance.Peer AwarenessEureka can be made even more resilient and available by running
multiple instances and asking them to register with each other. In
fact, this is the default behaviour, so all you need to do to make it
work is add a valid serviceUrl to a peer, e.g.application.yml (Two Peer Aware Eureka Servers)---
spring:
profiles: peer1
eureka:
instance:
hostname: peer1
client:
serviceUrl:
defaultZone: http://peer2/eureka/
---
spring:
profiles: peer2
eureka:
instance:
hostname: peer2
client:
serviceUrl:
defaultZone: http://peer1/eureka/In this example we have a YAML file that can be used to run the same
server on 2 hosts (peer1 and peer2), by running it in different
Spring profiles. You could use this configuration to test the peer
awareness on a single host (there’s not much value in doing that in
production) by manipulating /etc/hosts to resolve the host names. In
fact, the eureka.instance.hostname is not needed if you are running
on a machine that knows its own hostname (it is looked up using
java.net.InetAddress by default).You can add multiple peers to a system, and as long as they are all
connected to each other by at least one edge, they will synchronize
the registrations amongst themselves. If the peers are physically
separated (inside a data centre or between multiple data centres) then
the system can in principle survive split-brain type failures.Prefer IP AddressIn some cases, it is preferable for Eureka to advertise the IP Adresses
of services rather than the hostname. Set eureka.instance.preferIpAddress
to true and when the application registers with eureka, it will use its
IP Address rather than its hostname.If hostname can’t be determined by Java, then IP address is sent to Eureka.
Only explict way of setting hostname is by using eureka.instance.hostname.
You can set your hostname at the run time using environment variable, for
example eureka.instance.hostname=${HOST_NAME}.Circuit Breaker: Hystrix ClientsNetflix has created a library called Hystrix that implements the circuit breaker pattern. In a microservice architecture it is common to have multiple layers of service calls.Microservice GraphHystrixA service failure in the lower level of services can cause cascading failure all the way up to the user. When calls to a particular service is greater than circuitBreaker.requestVolumeThreshold (default: 20 requests) and failue percentage is greater than circuitBreaker.errorThresholdPercentage (default: >50%) in a rolling window defined by metrics.rollingStats.timeInMilliseconds (default: 10 seconds), the circuit opens and the call is not made. In cases of error and an open circuit a fallback can be provided by the developer.Hystrix fallback prevents cascading failuresHystrixFallbackHaving an open circuit stops cascading failures and allows overwhelmed or failing services time to heal. The fallback can be another Hystrix protected call, static data or a sane empty value. Fallbacks may be chained so the first fallback makes some other business call which in turn falls back to static data.How to Include HystrixTo include Hystrix in your project use the starter with group org.springframework.cloud
and artifact id spring-cloud-starter-netflix-hystrix. See the Spring Cloud Project page
for details on setting up your build system with the current Spring Cloud Release Train.Example boot app:@SpringBootApplication
@EnableCircuitBreaker
public class Application {
public static void main(String[] args) {
new SpringApplicationBuilder(Application.class).web(true).run(args);
}
}
@Component
public class StoreIntegration {
@HystrixCommand(fallbackMethod = "defaultStores")
public Object getStores(Map<String, Object> parameters) {
//do stuff that might fail
}
public Object defaultStores(Map<String, Object> parameters) {
return /* something useful */;
}
}The @HystrixCommand is provided by a Netflix contrib library called
"javanica".
Spring Cloud automatically wraps Spring beans with that
annotation in a proxy that is connected to the Hystrix circuit
breaker. The circuit breaker calculates when to open and close the
circuit, and what to do in case of a failure.To configure the @HystrixCommand you can use the commandProperties
attribute with a list of @HystrixProperty annotations. See
here
for more details. See the Hystrix wiki
for details on the properties available.Propagating the Security Context or using Spring ScopesIf you want some thread local context to propagate into a @HystrixCommand the default declaration will not work because it executes the command in a thread pool (in case of timeouts). You can switch Hystrix to use the same thread as the caller using some configuration, or directly in the annotation, by asking it to use a different "Isolation Strategy". For example:@HystrixCommand(fallbackMethod = "stubMyService",
commandProperties = {
@HystrixProperty(name="execution.isolation.strategy", value="SEMAPHORE")
}
)
...The same thing applies if you are using @SessionScope or @RequestScope. You will know when you need to do this because of a runtime exception that says it can’t find the scoped context.You also have the option to set the hystrix.shareSecurityContext property to true. Doing so will auto configure an Hystrix concurrency strategy plugin hook who will transfer the SecurityContext from your main thread to the one used by the Hystrix command. Hystrix does not allow multiple hystrix concurrency strategy to be registered so an extension mechanism is available by declaring your own HystrixConcurrencyStrategy as a Spring bean. Spring Cloud will lookup for your implementation within the Spring context and wrap it inside its own plugin.Health IndicatorThe state of the connected circuit breakers are also exposed in the
/health endpoint of the calling application.{
"hystrix": {
"openCircuitBreakers": [
"StoreIntegration::getStoresByLocationLink"
],
"status": "CIRCUIT_OPEN"
},
"status": "UP"
}Hystrix Metrics StreamTo enable the Hystrix metrics stream include a dependency on spring-boot-starter-actuator. This will expose the /hystrix.stream as a management endpoint. <dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>Circuit Breaker: Hystrix DashboardOne of the main benefits of Hystrix is the set of metrics it gathers about each HystrixCommand. The Hystrix Dashboard displays the health of each circuit breaker in an efficient manner.Hystrix DashboardHystrixHystrix Timeouts And Ribbon ClientsWhen using Hystrix commands that wrap Ribbon clients you want to make sure your Hystrix timeout
is configured to be longer than the configured Ribbon timeout, including any potential
retries that might be made. For example, if your Ribbon connection timeout is one second and
the Ribbon client might retry the request three times, than your Hystrix timeout should
be slightly more than three seconds.How to Include Hystrix DashboardTo include the Hystrix Dashboard in your project use the starter with group org.springframework.cloud
and artifact id spring-cloud-starter-netflix-hystrix-dashboard. See the Spring Cloud Project page
for details on setting up your build system with the current Spring Cloud Release Train.To run the Hystrix Dashboard annotate your Spring Boot main class with @EnableHystrixDashboard. You then visit /hystrix and point the dashboard to an individual instances /hystrix.stream endpoint in a Hystrix client application.When connecting to a /hystrix.stream endpoint which uses HTTPS the certificate used by the server
must be trusted by the JVM. If the certificate is not trusted you must import the certificate into the JVM
in order for the Hystrix Dashboard to make a successful connection to the stream endpoint.TurbineLooking at an individual instances Hystrix data is not very useful in terms of the overall health of the system. Turbine is an application that aggregates all of the relevant /hystrix.stream endpoints into a combined /turbine.stream for use in the Hystrix Dashboard. Individual instances are located via Eureka. Running Turbine is as simple as annotating your main class with the @EnableTurbine annotation (e.g. using spring-cloud-starter-netflix-turbine to set up the classpath). All of the documented configuration properties from the Turbine 1 wiki apply. The only difference is that the turbine.instanceUrlSuffix does not need the port prepended as this is handled automatically unless turbine.instanceInsertPort=false.By default, Turbine looks for the /hystrix.stream endpoint on a registered instance by looking up its hostName and port entries in Eureka, then appending /hystrix.stream to it.
If the instance’s metadata contains management.port, it will be used instead of the port value for the /hystrix.stream endpoint.
By default, metadata entry management.port is equal to the management.port configuration property, it can be overridden though with following configuration:eureka:
instance:
metadata-map:
management.port: ${management.port:8081}The configuration key turbine.appConfig is a list of eureka serviceIds that turbine will use to lookup instances. The turbine stream is then used in the Hystrix dashboard using a url that looks like: http://my.turbine.sever:8080/turbine.stream?cluster=CLUSTERNAME (the cluster parameter can be omitted if the name is "default"). The cluster parameter must match an entry in turbine.aggregator.clusterConfig. Values returned from eureka are uppercase, thus we expect this example to work if there is an app registered with Eureka called "customers":turbine:
aggregator:
clusterConfig: CUSTOMERS
appConfig: customersIf you need to customize which cluster names should be used by Turbine (you don’t want to store cluster names in
turbine.aggregator.clusterConfig configuration) provide a bean of type TurbineClustersProvider.The clusterName can be customized by a SPEL expression in turbine.clusterNameExpression with root an instance of InstanceInfo. The default value is appName, which means that the Eureka serviceId ends up as the cluster key (i.e. the InstanceInfo for customers has an appName of "CUSTOMERS"). A different example would be turbine.clusterNameExpression=aSGName, which would get the cluster name from the AWS ASG name. Another example:turbine:
aggregator:
clusterConfig: SYSTEM,USER
appConfig: customers,stores,ui,admin
clusterNameExpression: metadata['cluster']In this case, the cluster name from 4 services is pulled from their metadata map, and is expected to have values that include "SYSTEM" and "USER".To use the "default" cluster for all apps you need a string literal expression (with single quotes, and escaped with double quotes if it is in YAML as well):turbine:
appConfig: customers,stores
clusterNameExpression: "'default'"Spring Cloud provides a spring-cloud-starter-netflix-turbine that has all the dependencies you need to get a Turbine server running. Just create a Spring Boot application and annotate it with @EnableTurbine.by default Spring Cloud allows Turbine to use the host and port to allow multiple processes per host, per cluster. If you want the native Netflix behaviour built into Turbine that does not allow multiple processes per host, per cluster (the key to the instance id is the hostname), then set the property turbine.combineHostPort=false.Turbine StreamIn some environments (e.g. in a PaaS setting), the classic Turbine model of pulling metrics from all the distributed Hystrix commands doesn’t work. In that case you might want to have your Hystrix commands push metrics to Turbine, and Spring Cloud enables that with messaging. All you need to do on the client is add a dependency to spring-cloud-netflix-hystrix-stream and the spring-cloud-starter-stream-* of your choice (see Spring Cloud Stream documentation for details on the brokers, and how to configure the client credentials, but it should work out of the box for a local broker).On the server side Just create a Spring Boot application and annotate it with @EnableTurbineStream and by default it will come up on port 8989 (point your Hystrix dashboard to that port, any path). You can customize the port using either server.port or turbine.stream.port. If you have spring-boot-starter-web and spring-boot-starter-actuator on the classpath as well, then you can open up the Actuator endpoints on a separate port (with Tomcat by default) by providing a management.port which is different.You can then point the Hystrix Dashboard to the Turbine Stream Server instead of individual Hystrix streams. If Turbine Stream is running on port 8989 on myhost, then put http://myhost:8989 in the stream input field in the Hystrix Dashboard. Circuits will be prefixed by their respective serviceId, followed by a dot, then the circuit name.Spring Cloud provides a spring-cloud-starter-netflix-turbine-stream that has all the dependencies you need to get a Turbine Stream server running - just add the Stream binder of your choice, e.g. spring-cloud-starter-stream-rabbit. You need Java 8 to run the app because it is Netty-based.Turbine Stream server also supports the cluster parameter.
Unlike Turbine server, Turbine Stream uses eureka serviceIds as cluster names and these are not configurable.If Turbine Stream server is running on port 8989 on my.turbine.server and you have two eureka serviceIds customers and products in your environment, the following URLs will be available on your Turbine Stream server. default and empty cluster name will provide all metrics that Turbine Stream server receives.http://my.turbine.sever:8989/turbine.stream?cluster=customers
http://my.turbine.sever:8989/turbine.stream?cluster=products
http://my.turbine.sever:8989/turbine.stream?cluster=default
http://my.turbine.sever:8989/turbine.streamSo, you can use eureka serviceIds as cluster names for your Turbine dashboard (or any compatible dashboard).
You don’t need to configure any properties like turbine.appConfig, turbine.clusterNameExpression and turbine.aggregator.clusterConfig for your Turbine Stream server.Turbine Stream server gathers all metrics from the configured input channel with Spring Cloud Stream. It means that it doesn’t gather Hystrix metrics actively from each instance. It just can provide metrics that were already gathered into the input channel by each instance.Client Side Load Balancer: RibbonRibbon is a client side load balancer which gives you a lot of control
over the behaviour of HTTP and TCP clients. Feign already uses Ribbon,
so if you are using @FeignClient then this section also applies.A central concept in Ribbon is that of the named client. Each load
balancer is part of an ensemble of components that work together to
contact a remote server on demand, and the ensemble has a name that
you give it as an application developer (e.g. using the @FeignClient
annotation). Spring Cloud creates a new ensemble as an
ApplicationContext on demand for each named client using
RibbonClientConfiguration. This contains (amongst other things) an
ILoadBalancer, a RestClient, and a ServerListFilter.How to Include RibbonTo include Ribbon in your project use the starter with group org.springframework.cloud
and artifact id spring-cloud-starter-netflix-ribbon. See the Spring Cloud Project page
for details on setting up your build system with the current Spring Cloud Release Train.Customizing the Ribbon ClientYou can configure some bits of a Ribbon client using external
properties in <client>.ribbon.*, which is no different than using
the Netflix APIs natively, except that you can use Spring Boot
configuration files. The native options can
be inspected as static fields in CommonClientConfigKey (part of
ribbon-core).Spring Cloud also lets you take full control of the client by
declaring additional configuration (on top of the
RibbonClientConfiguration) using @RibbonClient. Example:@Configuration
@RibbonClient(name = "foo", configuration = FooConfiguration.class)
public class TestConfiguration {
}In this case the client is composed from the components already in
RibbonClientConfiguration together with any in FooConfiguration
(where the latter generally will override the former).The FooConfiguration has to be @Configuration but take
care that it is not in a @ComponentScan for the main application
context, otherwise it will be shared by all the @RibbonClients. If
you use @ComponentScan (or @SpringBootApplication) you need to
take steps to avoid it being included (for instance put it in a
separate, non-overlapping package, or specify the packages to scan
explicitly in the @ComponentScan).Spring Cloud Netflix provides the following beans by default for ribbon
(BeanType beanName: ClassName):IClientConfig ribbonClientConfig: DefaultClientConfigImplIRule ribbonRule: ZoneAvoidanceRuleIPing ribbonPing: DummyPingServerList<Server> ribbonServerList: ConfigurationBasedServerListServerListFilter<Server> ribbonServerListFilter: ZonePreferenceServerListFilterILoadBalancer ribbonLoadBalancer: ZoneAwareLoadBalancerServerListUpdater ribbonServerListUpdater: PollingServerListUpdaterCreating a bean of one of those type and placing it in a @RibbonClient
configuration (such as FooConfiguration above) allows you to override each
one of the beans described. Example:@Configuration
protected static class FooConfiguration {
@Bean
public ZonePreferenceServerListFilter serverListFilter() {
ZonePreferenceServerListFilter filter = new ZonePreferenceServerListFilter();
filter.setZone("myTestZone");
return filter;
}
@Bean
public IPing ribbonPing() {
return new PingUrl();
}
}This replaces the NoOpPing with PingUrl and provides a custom serverListFilterCustomizing default for all Ribbon ClientsA default configuration can be provided for all Ribbon Clients using the @RibbonClients annotation and registering a default configuration as shown in the following example:@RibbonClients(defaultConfiguration = DefaultRibbonConfig.class)
public class RibbonClientDefaultConfigurationTestsConfig {
public static class BazServiceList extends ConfigurationBasedServerList {
public BazServiceList(IClientConfig config) {
super.initWithNiwsConfig(config);
}
}
}
@Configuration
class DefaultRibbonConfig {
@Bean
public IRule ribbonRule() {
return new BestAvailableRule();
}
@Bean
public IPing ribbonPing() {
return new PingUrl();
}
@Bean
public ServerList<Server> ribbonServerList(IClientConfig config) {
return new RibbonClientDefaultConfigurationTestsConfig.BazServiceList(config);
}
@Bean
public ServerListSubsetFilter serverListFilter() {
ServerListSubsetFilter filter = new ServerListSubsetFilter();
return filter;
}
}Customizing the Ribbon Client using propertiesStarting with version 1.2.0, Spring Cloud Netflix now supports customizing Ribbon clients using properties to be compatible with the Ribbon documentation.This allows you to change behavior at start up time in different environments.The supported properties are listed below and should be prefixed by <clientName>.ribbon.:NFLoadBalancerClassName: should implement ILoadBalancerNFLoadBalancerRuleClassName: should implement IRuleNFLoadBalancerPingClassName: should implement IPingNIWSServerListClassName: should implement ServerListNIWSServerListFilterClassName should implement ServerListFilterClasses defined in these properties have precedence over beans defined using @RibbonClient(configuration=MyRibbonConfig.class) and the defaults provided by Spring Cloud Netflix.To set the IRule for a service name users you could set the following:application.ymlusers:
ribbon:
NIWSServerListClassName: com.netflix.loadbalancer.ConfigurationBasedServerList
NFLoadBalancerRuleClassName: com.netflix.loadbalancer.WeightedResponseTimeRuleSee the Ribbon documentation for implementations provided by Ribbon.Using Ribbon with EurekaWhen Eureka is used in conjunction with Ribbon (i.e., both are on the classpath) the ribbonServerList
is overridden with an extension of DiscoveryEnabledNIWSServerList
which populates the list of servers from Eureka. It also replaces the
IPing interface with NIWSDiscoveryPing which delegates to Eureka
to determine if a server is up. The ServerList that is installed by
default is a DomainExtractingServerList and the purpose of this is
to make physical metadata available to the load balancer without using
AWS AMI metadata (which is what Netflix relies on). By default the
server list will be constructed with "zone" information as provided in
the instance metadata (so on the remote clients set
eureka.instance.metadataMap.zone), and if that is missing it can use
the domain name from the server hostname as a proxy for zone (if the
flag approximateZoneFromHostname is set). Once the zone information
is available it can be used in a ServerListFilter. By default it
will be used to locate a server in the same zone as the client because
the default is a ZonePreferenceServerListFilter. The zone of the
client is determined the same way as the remote instances by default,
i.e. via eureka.instance.metadataMap.zone.The orthodox "archaius" way to set the client zone is via a
configuration property called "@zone", and Spring Cloud will use that
in preference to all other settings if it is available (note that the
key will have to be quoted in YAML configuration).If there is no other source of zone data then a guess is made
based on the client configuration (as opposed to the instance
configuration). We take eureka.client.availabilityZones, which is a
map from region name to a list of zones, and pull out the first zone
for the instance’s own region (i.e. the eureka.client.region, which
defaults to "us-east-1" for comatibility with native Netflix).Example: How to Use Ribbon Without EurekaEureka is a convenient way to abstract the discovery of remote servers
so you don’t have to hard code their URLs in clients, but if you
prefer not to use it, Ribbon and Feign are still quite
amenable. Suppose you have declared a @RibbonClient for "stores",
and Eureka is not in use (and not even on the classpath). The Ribbon
client defaults to a configured server list, and you can supply the
configuration like thisapplication.ymlstores:
ribbon:
listOfServers: example.com,google.comExample: Disable Eureka use in RibbonSetting the property ribbon.eureka.enabled = false will explicitly
disable the use of Eureka in Ribbon.application.ymlribbon:
eureka:
enabled: falseUsing the Ribbon API DirectlyYou can also use the LoadBalancerClient directly. Example:public class MyClass {
@Autowired
private LoadBalancerClient loadBalancer;
public void doStuff() {
ServiceInstance instance = loadBalancer.choose("stores");
URI storesUri = URI.create(String.format("http://%s:%s", instance.getHost(), instance.getPort()));
// ... do something with the URI
}
}Caching of Ribbon ConfigurationEach Ribbon named client has a corresponding child Application Context that Spring Cloud maintains, this application context is lazily loaded up on the first request to the named client.
This lazy loading behavior can be changed to instead eagerly load up these child Application contexts at startup by specifying the names of the Ribbon clients.application.ymlribbon:
eager-load:
enabled: true
clients: client1, client2, client3How to Configure Hystrix thread poolsIf you change zuul.ribbonIsolationStrategy to THREAD, the thread isolation strategy for Hystrix will be used for all routes. In this case, the HystrixThreadPoolKey is set to "RibbonCommand" as default. It means that HystrixCommands for all routes will be executed in the same Hystrix thread pool. This behavior can be changed using the following configuration and it will result in HystrixCommands being executed in the Hystrix thread pool for each route.application.ymlzuul:
threadPool:
useSeparateThreadPools: trueThe default HystrixThreadPoolKey in this case is same with service ID for each route. To add a prefix to HystrixThreadPoolKey, set zuul.threadPool.threadPoolKeyPrefix to a value that you want to add. For example:application.ymlzuul:
threadPool:
useSeparateThreadPools: true
threadPoolKeyPrefix: zuulgwHow to Provide a Key to Ribbon’s IRuleIf you need to provide your own IRule implementation to handle a special routing requirement like a canary test,
you probably want to pass some information to the choose method of IRule.com.netflix.loadbalancer.IRule.javapublic interface IRule{
public Server choose(Object key);
:You can provide some information that will be used to choose a target server by your IRule implementation like
the following:RequestContext.getCurrentContext()
.set(FilterConstants.LOAD_BALANCER_KEY, "canary-test");If you put any object into the RequestContext with a key FilterConstants.LOAD_BALANCER_KEY, it will
be passed to the choose method of IRule implementation. Above code must be executed before RibbonRoutingFilter
is executed and Zuul’s pre filter is the best place to do that. You can easily access HTTP headers and query parameters
via RequestContext in pre filter, so it can be used to determine LOAD_BALANCER_KEY that will be passed to Ribbon.
If you don’t put any value with LOAD_BALANCER_KEY in RequestContext, null will be passed as a parameter of choose
method.Declarative REST Client: FeignFeign is a declarative web service client. It makes writing web service clients easier. To use Feign create an interface and annotate it. It has pluggable annotation support including Feign annotations and JAX-RS annotations. Feign also supports pluggable encoders and decoders. Spring Cloud adds support for Spring MVC annotations and for using the same HttpMessageConverters used by default in Spring Web. Spring Cloud integrates Ribbon and Eureka to provide a load balanced http client when using Feign.How to Include FeignTo include Feign in your project use the starter with group org.springframework.cloud
and artifact id spring-cloud-starter-openfeign. See the Spring Cloud Project page
for details on setting up your build system with the current Spring Cloud Release Train.Example spring boot app@Configuration
@ComponentScan
@EnableAutoConfiguration
@EnableFeignClients
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}StoreClient.java@FeignClient("stores")
public interface StoreClient {
@RequestMapping(method = RequestMethod.GET, value = "/stores")
List<Store> getStores();
@RequestMapping(method = RequestMethod.POST, value = "/stores/{storeId}", consumes = "application/json")
Store update(@PathVariable("storeId") Long storeId, Store store);
}In the @FeignClient annotation the String value ("stores" above) is
an arbitrary client name, which is used to create a Ribbon load
balancer (see below for details of Ribbon
support). You can also specify a URL using the url attribute
(absolute value or just a hostname). The name of the bean in the
application context is the fully qualified name of the interface.
To specify your own alias value you can use the qualifier value
of the @FeignClient annotation.The Ribbon client above will want to discover the physical addresses
for the "stores" service. If your application is a Eureka client then
it will resolve the service in the Eureka service registry. If you
don’t want to use Eureka, you can simply configure a list of servers
in your external configuration (see
above for example).Overriding Feign DefaultsA central concept in Spring Cloud’s Feign support is that of the named client. Each feign client is part of an ensemble of components that work together to contact a remote server on demand, and the ensemble has a name that you give it as an application developer using the @FeignClient annotation. Spring Cloud creates a new ensemble as an
ApplicationContext on demand for each named client using FeignClientsConfiguration. This contains (amongst other things) an feign.Decoder, a feign.Encoder, and a feign.Contract.Spring Cloud lets you take full control of the feign client by declaring additional configuration (on top of the FeignClientsConfiguration) using @FeignClient. Example:@FeignClient(name = "stores", configuration = FooConfiguration.class)
public interface StoreClient {
//..
}In this case the client is composed from the components already in FeignClientsConfiguration together with any in FooConfiguration (where the latter will override the former).FooConfiguration does not need to be annotated with @Configuration. However, if it is, then take care to exclude it from any @ComponentScan that would otherwise include this configuration as it will become the default source for feign.Decoder, feign.Encoder, feign.Contract, etc., when specified. This can be avoided by putting it in a separate, non-overlapping package from any @ComponentScan or @SpringBootApplication, or it can be explicitly excluded in @ComponentScan.The serviceId attribute is now deprecated in favor of the name attribute.Previously, using the url attribute, did not require the name attribute. Using name is now required.Placeholders are supported in the name and url attributes.@FeignClient(name = "${feign.name}", url = "${feign.url}")
public interface StoreClient {
//..
}Spring Cloud Netflix provides the following beans by default for feign (BeanType beanName: ClassName):Decoder feignDecoder: ResponseEntityDecoder (which wraps a SpringDecoder)Encoder feignEncoder: SpringEncoderLogger feignLogger: Slf4jLoggerContract feignContract: SpringMvcContractFeign.Builder feignBuilder: HystrixFeign.BuilderClient feignClient: if Ribbon is enabled it is a LoadBalancerFeignClient, otherwise the default feign client is used.The OkHttpClient and ApacheHttpClient feign clients can be used by setting feign.okhttp.enabled or feign.httpclient.enabled to true, respectively, and having them on the classpath.
You can customize the HTTP client used by providing a bean of either ClosableHttpClient when using Apache or OkHttpClient whe using OK HTTP.Spring Cloud Netflix does not provide the following beans by default for feign, but still looks up beans of these types from the application context to create the feign client:Logger.LevelRetryerErrorDecoderRequest.OptionsCollection<RequestInterceptor>SetterFactoryCreating a bean of one of those type and placing it in a @FeignClient configuration (such as FooConfiguration above) allows you to override each one of the beans described. Example:@Configuration
public class FooConfiguration {
@Bean
public Contract feignContract() {
return new feign.Contract.Default();
}
@Bean
public BasicAuthRequestInterceptor basicAuthRequestInterceptor() {
return new BasicAuthRequestInterceptor("user", "password");
}
}This replaces the SpringMvcContract with feign.Contract.Default and adds a RequestInterceptor to the collection of RequestInterceptor.@FeignClient also can be configured using configuration properties.application.ymlfeign:
client:
config:
feignName:
connectTimeout: 5000
readTimeout: 5000
loggerLevel: full
errorDecoder: com.example.SimpleErrorDecoder
retryer: com.example.SimpleRetryer
requestInterceptors:
- com.example.FooRequestInterceptor
- com.example.BarRequestInterceptor
decode404: falseDefault configurations can be specified in the @EnableFeignClients attribute defaultConfiguration in a similar manner as described above. The difference is that this configuration will apply to all feign clients.If you prefer using configuration properties to configured all @FeignClient, you can create configuration properties with default feign name.application.ymlfeign:
client:
config:
default:
connectTimeout: 5000
readTimeout: 5000
loggerLevel: basicIf we create both @Configuration bean and configuration properties, configuration properties will win.
It will override @Configuration values. But if you want to change the priority to @Configuration,
you can change feign.client.default-to-properties to false.If you need to use ThreadLocal bound variables in your RequestInterceptor`s you will need to either set the
thread isolation strategy for Hystrix to `SEMAPHORE or disable Hystrix in Feign.application.yml# To disable Hystrix in Feign
feign:
hystrix:
enabled: false
# To set thread isolation to SEMAPHORE
hystrix:
command:
default:
execution:
isolation:
strategy: SEMAPHORECreating Feign Clients ManuallyIn some cases it might be necessary to customize your Feign Clients in a way that is not
possible using the methods above. In this case you can create Clients using the
Feign Builder API. Below is an example
which creates two Feign Clients with the same interface but configures each one with
a separate request interceptor.@Import(FeignClientsConfiguration.class)
class FooController {
private FooClient fooClient;
private FooClient adminClient;
@Autowired
public FooController(
Decoder decoder, Encoder encoder, Client client) {
this.fooClient = Feign.builder().client(client)
.encoder(encoder)
.decoder(decoder)
.requestInterceptor(new BasicAuthRequestInterceptor("user", "user"))
.target(FooClient.class, "http://PROD-SVC");
this.adminClient = Feign.builder().client(client)
.encoder(encoder)
.decoder(decoder)
.requestInterceptor(new BasicAuthRequestInterceptor("admin", "admin"))
.target(FooClient.class, "http://PROD-SVC");
}
}In the above example FeignClientsConfiguration.class is the default configuration
provided by Spring Cloud Netflix.PROD-SVC is the name of the service the Clients will be making requests to.Feign Hystrix SupportIf Hystrix is on the classpath and feign.hystrix.enabled=true, Feign will wrap all methods with a circuit breaker. Returning a com.netflix.hystrix.HystrixCommand is also available. This lets you use reactive patterns (with a call to .toObservable() or .observe() or asynchronous use (with a call to .queue()).To disable Hystrix support on a per-client basis create a vanilla Feign.Builder with the "prototype" scope, e.g.:@Configuration
public class FooConfiguration {
@Bean
@Scope("prototype")
public Feign.Builder feignBuilder() {
return Feign.builder();
}
}Prior to the Spring Cloud Dalston release, if Hystrix was on the classpath Feign would have wrapped
all methods in a circuit breaker by default. This default behavior was changed in Spring Cloud Dalston in
favor for an opt-in approach.Feign Hystrix FallbacksHystrix supports the notion of a fallback: a default code path that is executed when they circuit is open or there is an error. To enable fallbacks for a given @FeignClient set the fallback attribute to the class name that implements the fallback. You also need to declare your implementation as a Spring bean.@FeignClient(name = "hello", fallback = HystrixClientFallback.class)
protected interface HystrixClient {
@RequestMapping(method = RequestMethod.GET, value = "/hello")
Hello iFailSometimes();
}
static class HystrixClientFallback implements HystrixClient {
@Override
public Hello iFailSometimes() {
return new Hello("fallback");
}
}If one needs access to the cause that made the fallback trigger, one can use the fallbackFactory attribute inside @FeignClient.@FeignClient(name = "hello", fallbackFactory = HystrixClientFallbackFactory.class)
protected interface HystrixClient {
@RequestMapping(method = RequestMethod.GET, value = "/hello")
Hello iFailSometimes();
}
@Component
static class HystrixClientFallbackFactory implements FallbackFactory<HystrixClient> {
@Override
public HystrixClient create(Throwable cause) {
return new HystrixClient() {
@Override
public Hello iFailSometimes() {
return new Hello("fallback; reason was: " + cause.getMessage());
}
};
}
}There is a limitation with the implementation of fallbacks in Feign and how Hystrix fallbacks work. Fallbacks are currently not supported for methods that return com.netflix.hystrix.HystrixCommand and rx.Observable.Feign and @PrimaryWhen using Feign with Hystrix fallbacks, there are multiple beans in the ApplicationContext of the same type. This will cause @Autowired to not work because there isn’t exactly one bean, or one marked as primary. To work around this, Spring Cloud Netflix marks all Feign instances as @Primary, so Spring Framework will know which bean to inject. In some cases, this may not be desirable. To turn off this behavior set the primary attribute of @FeignClient to false.@FeignClient(name = "hello", primary = false)
public interface HelloClient {
// methods here
}Feign Inheritance SupportFeign supports boilerplate apis via single-inheritance interfaces.
This allows grouping common operations into convenient base interfaces.UserService.javapublic interface UserService {
@RequestMapping(method = RequestMethod.GET, value ="/users/{id}")
User getUser(@PathVariable("id") long id);
}UserResource.java@RestController
public class UserResource implements UserService {
}UserClient.javapackage project.user;
@FeignClient("users")
public interface UserClient extends UserService {
}It is generally not advisable to share an interface between a
server and a client. It introduces tight coupling, and also actually
doesn’t work with Spring MVC in its current form (method parameter
mapping is not inherited).Feign request/response compressionYou may consider enabling the request or response GZIP compression for your
Feign requests. You can do this by enabling one of the properties:feign.compression.request.enabled=true
feign.compression.response.enabled=trueFeign request compression gives you settings similar to what you may set for your web server:feign.compression.request.enabled=true
feign.compression.request.mime-types=text/xml,application/xml,application/json
feign.compression.request.min-request-size=2048These properties allow you to be selective about the compressed media types and minimum request threshold length.Feign loggingA logger is created for each Feign client created. By default the name of the logger is the full class name of the interface used to create the Feign client. Feign logging only responds to the DEBUG level.application.ymllogging.level.project.user.UserClient: DEBUGThe Logger.Level object that you may configure per client, tells Feign how much to log. Choices are:NONE, No logging (DEFAULT).BASIC, Log only the request method and URL and the response status code and execution time.HEADERS, Log the basic information along with request and response headers.FULL, Log the headers, body, and metadata for both requests and responses.For example, the following would set the Logger.Level to FULL:@Configuration
public class FooConfiguration {
@Bean
Logger.Level feignLoggerLevel() {
return Logger.Level.FULL;
}
}External Configuration: ArchaiusArchaius is the Netflix client side configuration library. It is the library used by all of the Netflix OSS components for configuration. Archaius is an extension of the Apache Commons Configuration project. It allows updates to configuration by either polling a source for changes or for a source to push changes to the client. Archaius uses Dynamic<Type>Property classes as handles to properties.Archaius Exampleclass ArchaiusTest {
DynamicStringProperty myprop = DynamicPropertyFactory
.getInstance()
.getStringProperty("my.prop");
void doSomething() {
OtherClass.someMethod(myprop.get());
}
}Archaius has its own set of configuration files and loading priorities. Spring applications should generally not use Archaius directly, but the need to configure the Netflix tools natively remains. Spring Cloud has a Spring Environment Bridge so Archaius can read properties from the Spring Environment. This allows Spring Boot projects to use the normal configuration toolchain, while allowing them to configure the Netflix tools, for the most part, as documented.Router and Filter: ZuulRouting in an integral part of a microservice architecture. For example, / may be mapped to your web application, /api/users is mapped to the user service and /api/shop is mapped to the shop service. Zuul is a JVM based router and server side load balancer by Netflix.Netflix uses Zuul for the following:AuthenticationInsightsStress TestingCanary TestingDynamic RoutingService MigrationLoad SheddingSecurityStatic Response handlingActive/Active traffic managementZuul’s rule engine allows rules and filters to be written in essentially any JVM language, with built in support for Java and Groovy.The configuration property zuul.max.host.connections has been replaced by two new properties, zuul.host.maxTotalConnections and zuul.host.maxPerRouteConnections which default to 200 and 20 respectively.Default Hystrix isolation pattern (ExecutionIsolationStrategy) for all routes is SEMAPHORE. zuul.ribbonIsolationStrategy can be changed to THREAD if this isolation pattern is preferred.How to Include ZuulTo include Zuul in your project use the starter with group org.springframework.cloud
and artifact id spring-cloud-starter-netflix-zuul. See the Spring Cloud Project page
for details on setting up your build system with the current Spring Cloud Release Train.Embedded Zuul Reverse ProxySpring Cloud has created an embedded Zuul proxy to ease the
development of a very common use case where a UI application wants to
proxy calls to one or more back end services. This feature is useful
for a user interface to proxy to the backend services it requires,
avoiding the need to manage CORS and authentication concerns
independently for all the backends.To enable it, annotate a Spring Boot main class with
@EnableZuulProxy, and this forwards local calls to the appropriate
service. By convention, a service with the ID "users", will
receive requests from the proxy located at /users (with the prefix
stripped). The proxy uses Ribbon to locate an instance to forward to
via discovery, and all requests are executed in a
hystrix command, so
failures will show up in Hystrix metrics, and once the circuit is open
the proxy will not try to contact the service.the Zuul starter does not include a discovery client, so for
routes based on service IDs you need to provide one of those
on the classpath as well (e.g. Eureka is one choice).To skip having a service automatically added, set
zuul.ignored-services to a list of service id patterns. If a service
matches a pattern that is ignored, but also included in the explicitly
configured routes map, then it will be unignored. Example:application.yml zuul:
ignoredServices: '*'
routes:
users: /myusers/**In this example, all services are ignored except "users".To augment or change
the proxy routes, you can add external configuration like the
following:application.yml zuul:
routes:
users: /myusers/**This means that http calls to "/myusers" get forwarded to the "users"
service (for example "/myusers/101" is forwarded to "/101").To get more fine-grained control over a route you can specify the path
and the serviceId independently:application.yml zuul:
routes:
users:
path: /myusers/**
serviceId: users_serviceThis means that http calls to "/myusers" get forwarded to the
"users_service" service. The route has to have a "path" which can be
specified as an ant-style pattern, so "/myusers/*" only matches one
level, but "/myusers/**" matches hierarchically.The location of the backend can be specified as either a "serviceId"
(for a service from discovery) or a "url" (for a physical location), e.g.application.yml zuul:
routes:
users:
path: /myusers/**
url: http://example.com/users_serviceThese simple url-routes don’t get executed as a HystrixCommand nor do they loadbalance multiple URLs with Ribbon.
To achieve this, you can specify a serviceId with a static list of servers:application.ymlzuul:
routes:
echo:
path: /myusers/**
serviceId: myusers-service
stripPrefix: true
hystrix:
command:
myusers-service:
execution:
isolation:
thread:
timeoutInMilliseconds: ...
myusers-service:
ribbon:
NIWSServerListClassName: com.netflix.loadbalancer.ConfigurationBasedServerList
listOfServers: http://example1.com,http://example2.com
ConnectTimeout: 1000
ReadTimeout: 3000
MaxTotalHttpConnections: 500
MaxConnectionsPerHost: 100Another method is specifiying a service-route and configure a Ribbon client for the
serviceId (this requires disabling Eureka support in Ribbon:
see above for more information), e.g.application.ymlzuul:
routes:
users:
path: /myusers/**
serviceId: users
ribbon:
eureka:
enabled: false
users:
ribbon:
listOfServers: example.com,google.comYou can provide convention between serviceId and routes using
regexmapper. It uses regular expression named groups to extract
variables from serviceId and inject them into a route pattern.ApplicationConfiguration.java@Bean
public PatternServiceRouteMapper serviceRouteMapper() {
return new PatternServiceRouteMapper(
"(?<name>^.+)-(?<version>v.+$)",
"${version}/${name}");
}This means that a serviceId "myusers-v1" will be mapped to route
"/v1/myusers/**". Any regular expression is accepted but all named
groups must be present in both servicePattern and routePattern. If
servicePattern does not match a serviceId, the default behavior is
used. In the example above, a serviceId "myusers" will be mapped to route
"/myusers/**" (no version detected) This feature is disabled by
default and only applies to discovered services.To add a prefix to all mappings, set zuul.prefix to a value, such as
/api. The proxy prefix is stripped from the request before the
request is forwarded by default (switch this behaviour off with
zuul.stripPrefix=false). You can also switch off the stripping of
the service-specific prefix from individual routes, e.g.application.yml zuul:
routes:
users:
path: /myusers/**
stripPrefix: falsezuul.stripPrefix only applies to the prefix set in zuul.prefix. It does not have any effect on prefixes
defined within a given route’s path.In this example, requests to "/myusers/101" will be forwarded to "/myusers/101" on the "users" service.The zuul.routes entries actually bind to an object of type ZuulProperties. If you
look at the properties of that object you will see that it also has a "retryable" flag.
Set that flag to "true" to have the Ribbon client automatically retry failed requests
(and if you need to you can modify the parameters of the retry operations using
the Ribbon client configuration).The X-Forwarded-Host header is added to the forwarded requests by
default. To turn it off set zuul.addProxyHeaders = false. The
prefix path is stripped by default, and the request to the backend
picks up a header "X-Forwarded-Prefix" ("/myusers" in the examples
above).An application with @EnableZuulProxy could act as a standalone
server if you set a default route ("/"), for example zuul.route.home:
/ would route all traffic (i.e. "/**") to the "home" service.If more fine-grained ignoring is needed, you can specify specific patterns to ignore.
These patterns are evaluated at the start of the route location process, which
means prefixes should be included in the pattern to warrant a match. Ignored patterns
span all services and supersede any other route specification.application.yml zuul:
ignoredPatterns: /**/admin/**
routes:
users: /myusers/**This means that all calls such as "/myusers/101" will be forwarded to "/101" on the "users" service.
But calls including "/admin/" will not resolve.If you need your routes to have their order preserved you need to use a YAML
file as the ordering will be lost using a properties file. For example:application.yml zuul:
routes:
users:
path: /myusers/**
legacy:
path: /**If you were to use a properties file, the legacy path may end up in front of the users
path rendering the users path unreachable.Zuul Http ClientThe default HTTP client used by zuul is now backed by the Apache HTTP Client instead of the
deprecated Ribbon RestClient. To use RestClient or to use the okhttp3.OkHttpClient set
ribbon.restclient.enabled=true or ribbon.okhttp.enabled=true respectively. If you would
like to customize the Apache HTTP client or the OK HTTP client provide a bean of type
ClosableHttpClient or OkHttpClient.Cookies and Sensitive HeadersIt’s OK to share headers between services in the same system, but you
probably don’t want sensitive headers leaking downstream into external
servers. You can specify a list of ignored headers as part of the
route configuration. Cookies play a special role because they have
well-defined semantics in browsers, and they are always to be treated
as sensitive. If the consumer of your proxy is a browser, then cookies
for downstream services also cause problems for the user because they
all get jumbled up (all downstream services look like they come from
the same place).If you are careful with the design of your services, for example if
only one of the downstream services sets cookies, then you might be
able to let them flow from the backend all the way up to the
caller. Also, if your proxy sets cookies and all your back end
services are part of the same system, it can be natural to simply
share them (and for instance use Spring Session to link them up to some
shared state). Other than that, any cookies that get set by downstream
services are likely to be not very useful to the caller, so it is
recommended that you make (at least) "Set-Cookie" and "Cookie" into
sensitive headers for routes that are not part of your domain. Even
for routes that are part of your domain, try to think carefully
about what it means before allowing cookies to flow between them and
the proxy.The sensitive headers can be configured as a comma-separated list per
route, e.g.application.yml zuul:
routes:
users:
path: /myusers/**
sensitiveHeaders: Cookie,Set-Cookie,Authorization
url: https://downstreamthis is the default value for sensitiveHeaders, so you don’t
need to set it unless you want it to be different. N.B. this is new in
Spring Cloud Netflix 1.1 (in 1.0 the user had no control over headers
and all cookies flow in both directions).The sensitiveHeaders are a blacklist and the default is not empty,
so to make Zuul send all headers (except the "ignored" ones) you would
have to explicitly set it to the empty list. This is necessary if you
want to pass cookie or authorization headers to your back end. Example:application.yml zuul:
routes:
users:
path: /myusers/**
sensitiveHeaders:
url: https://downstreamSensitive headers can also be set globally by setting zuul.sensitiveHeaders. If sensitiveHeaders is set on a route, this will override the global sensitiveHeaders setting.Ignored HeadersIn addition to the per-route sensitive headers, you can set a global
value for zuul.ignoredHeaders for values that should be discarded
(both request and response) during interactions with downstream
services. By default these are empty, if Spring Security is not on the
classpath, and otherwise they are initialized to a set of well-known
"security" headers (e.g. involving caching) as specified by Spring
Security. The assumption in this case is that the downstream services
might add these headers too, and we want the values from the proxy.
To not discard these well known security headers in case Spring Security is on the classpath you can set zuul.ignoreSecurityHeaders to false. This can be useful if you disabled the HTTP Security response headers in Spring Security and want the values provided by downstream servicesManagement EndpointsIf you are using @EnableZuulProxy with the Spring Boot Actuator you
will enable (by default) two additional endpoints:RoutesFiltersRoutes EndpointA GET to the routes endpoint at /routes will return a list of the mapped
routes:GET /routes{
/stores/**: "http://localhost:8081"
}Additional route details can be requested by adding the ?format=details query
string to /routes. This will produce the following output:GET /routes?format=details{
"/stores/**": {
"id": "stores",
"fullPath": "/stores/**",
"location": "http://localhost:8081",
"path": "/**",
"prefix": "/stores",
"retryable": false,
"customSensitiveHeaders": false,
"prefixStripped": true
}
}A POST will force a refresh of the existing routes (e.g. in
case there have been changes in the service catalog). You can disable
this endpoint by setting endpoints.routes.enabled to false.the routes should respond automatically to changes in the
service catalog, but the POST to /routes is a way to force the change
to happen immediately.Filters EndpointA GET to the filters endpoint at /filters will return a map of Zuul
filters by type. For each filter type in the map, you will find a list
of all the filters of that type, along with their details.Strangulation Patterns and Local ForwardsA common pattern when migrating an existing application or API is to
"strangle" old endpoints, slowly replacing them with different
implementations. The Zuul proxy is a useful tool for this because you
can use it to handle all traffic from clients of the old endpoints,
but redirect some of the requests to new ones.Example configuration:application.yml zuul:
routes:
first:
path: /first/**
url: http://first.example.com
second:
path: /second/**
url: forward:/second
third:
path: /third/**
url: forward:/3rd
legacy:
path: /**
url: http://legacy.example.comIn this example we are strangling the "legacy" app which is mapped to
all requests that do not match one of the other patterns. Paths in
/first/** have been extracted into a new service with an external
URL. And paths in /second/** are forwarded so they can be handled
locally, e.g. with a normal Spring @RequestMapping. Paths in
/third/** are also forwarded, but with a different prefix
(i.e. /third/foo is forwarded to /3rd/foo).The ignored patterns aren’t completely ignored, they just
aren’t handled by the proxy (so they are also effectively forwarded
locally).Uploading Files through ZuulIf you @EnableZuulProxy you can use the proxy paths to
upload files and it should just work as long as the files
are small. For large files there is an alternative path
which bypasses the Spring DispatcherServlet (to
avoid multipart processing) in "/zuul/*". I.e. if
zuul.routes.customers=/customers/** then you can
POST large files to "/zuul/customers/*". The servlet
path is externalized via zuul.servletPath. Extremely
large files will also require elevated timeout settings
if the proxy route takes you through a Ribbon load
balancer, e.g.application.ymlhystrix.command.default.execution.isolation.thread.timeoutInMilliseconds: 60000
ribbon:
ConnectTimeout: 3000
ReadTimeout: 60000Note that for streaming to work with large files, you need to use chunked encoding in the request (which some browsers
do not do by default). E.g. on the command line:$ curl -v -H "Transfer-Encoding: chunked" \
-F "file=@mylarge.iso" localhost:9999/zuul/simple/fileQuery String EncodingWhen processing the incoming request, query params are decoded so they can be available for possible modifications in
Zuul filters. They are then re-encoded when building the backend request in the route filters. The result
can be different than the original input if it was encoded using Javascript’s encodeURIComponent() method for example.
While this causes no issues in most cases, some web servers can be picky with the encoding of complex query string.To force the original encoding of the query string, it is possible to pass a special flag to ZuulProperties so
that the query string is taken as is with the HttpServletRequest::getQueryString method :application.yml zuul:
forceOriginalQueryStringEncoding: trueNote: This special flag only works with SimpleHostRoutingFilter and you loose the ability to easily override
query parameters with RequestContext.getCurrentContext().setRequestQueryParams(someOverriddenParameters) since
the query string is now fetched directly on the original HttpServletRequest.Plain Embedded ZuulYou can also run a Zuul server without the proxying, or switch on parts of the proxying platform selectively, if you
use @EnableZuulServer (instead of @EnableZuulProxy). Any beans that you add to the application of type ZuulFilter
will be installed automatically, as they are with @EnableZuulProxy, but without any of the proxy filters being added
automatically.In this case the routes into the Zuul server are still specified by
configuring "zuul.routes.*", but there is no service
discovery and no proxying, so the "serviceId" and "url" settings are
ignored. For example:application.yml zuul:
routes:
api: /api/**maps all paths in "/api/**" to the Zuul filter chain.Disable Zuul FiltersZuul for Spring Cloud comes with a number of ZuulFilter beans enabled by default
in both proxy and server mode. See the zuul filters package for the
possible filters that are enabled. If you want to disable one, simply set
zuul.<SimpleClassName>.<filterType>.disable=true. By convention, the package after
filters is the Zuul filter type. For example to disable
org.springframework.cloud.netflix.zuul.filters.post.SendResponseFilter set
zuul.SendResponseFilter.post.disable=true.Providing Hystrix Fallbacks For RoutesWhen a circuit for a given route in Zuul is tripped you can provide a fallback response
by creating a bean of type ZuulFallbackProvider. Within this bean you need to specify
the route ID the fallback is for and provide a ClientHttpResponse to return
as a fallback. Here is a very simple ZuulFallbackProvider implementation.class MyFallbackProvider implements ZuulFallbackProvider {
@Override
public String getRoute() {
return "customers";
}
@Override
public ClientHttpResponse fallbackResponse() {
return new ClientHttpResponse() {
@Override
public HttpStatus getStatusCode() throws IOException {
return HttpStatus.OK;
}
@Override
public int getRawStatusCode() throws IOException {
return 200;
}
@Override
public String getStatusText() throws IOException {
return "OK";
}
@Override
public void close() {
}
@Override
public InputStream getBody() throws IOException {
return new ByteArrayInputStream("fallback".getBytes());
}
@Override
public HttpHeaders getHeaders() {
HttpHeaders headers = new HttpHeaders();
headers.setContentType(MediaType.APPLICATION_JSON);
return headers;
}
};
}
}And here is what the route configuration would look like.zuul:
routes:
customers: /customers/**If you would like to provide a default fallback for all routes than you can create a bean of
type ZuulFallbackProvider and have the getRoute method return * or null.class MyFallbackProvider implements ZuulFallbackProvider {
@Override
public String getRoute() {
return "*";
}
@Override
public ClientHttpResponse fallbackResponse() {
return new ClientHttpResponse() {
@Override
public HttpStatus getStatusCode() throws IOException {
return HttpStatus.OK;
}
@Override
public int getRawStatusCode() throws IOException {
return 200;
}
@Override
public String getStatusText() throws IOException {
return "OK";
}
@Override
public void close() {
}
@Override
public InputStream getBody() throws IOException {
return new ByteArrayInputStream("fallback".getBytes());
}
@Override
public HttpHeaders getHeaders() {
HttpHeaders headers = new HttpHeaders();
headers.setContentType(MediaType.APPLICATION_JSON);
return headers;
}
};
}
}If you would like to choose the response based on the cause of the failure use FallbackProvider which will replace ZuulFallbackProvder in future versions.class MyFallbackProvider implements FallbackProvider {
@Override
public String getRoute() {
return "*";
}
@Override
public ClientHttpResponse fallbackResponse(final Throwable cause) {
if (cause instanceof HystrixTimeoutException) {
return response(HttpStatus.GATEWAY_TIMEOUT);
} else {
return fallbackResponse();
}
}
@Override
public ClientHttpResponse fallbackResponse() {
return response(HttpStatus.INTERNAL_SERVER_ERROR);
}
private ClientHttpResponse response(final HttpStatus status) {
return new ClientHttpResponse() {
@Override
public HttpStatus getStatusCode() throws IOException {
return status;
}
@Override
public int getRawStatusCode() throws IOException {
return status.value();
}
@Override
public String getStatusText() throws IOException {
return status.getReasonPhrase();
}
@Override
public void close() {
}
@Override
public InputStream getBody() throws IOException {
return new ByteArrayInputStream("fallback".getBytes());
}
@Override
public HttpHeaders getHeaders() {
HttpHeaders headers = new HttpHeaders();
headers.setContentType(MediaType.APPLICATION_JSON);
return headers;
}
};
}
}Zuul TimeoutsService Discovery ConfigurationIf Zuul is using service discovery there are two timeouts you need to be concerned
with, the Hystrix timeout (since all routes are wrapped in Hystrix commands by default)
and the Ribbon timeout. The Hystrix timeout needs to take into account the Ribbon
read and connect timeout PLUS the total number of retries that will happen for that
service. By default Spring Cloud Zuul will do its best to calculate the Hystrix timeout
for you UNLESS you specify the Hystrix timeout explicitly.The Hystrix timeout is calculated using the following formula:(ribbon.ConnectTimeout + ribbon.ReadTimeout) * (ribbon.MaxAutoRetries + 1) * (ribbon.MaxAutoRetriesNextServer + 1)As an example, if you set the following properties in your application propertiesapplication.ymlribbon:
ReadTimeout:100
ConnectTimeout:500
MaxAutoRetries:1
MaxAutoRetriesNextServer:1Then the Hystrix timeout (for all routes in this case) will be set to 2400ms.You can configure the Hystrix timeout for individual routes using service.ribbon.* properties.If you choose to not configure the above properties than the default values will be used therefore the
default Hystrix timeout will be set to 4000ms.If you set hystrix.command.commandKey.execution.isolation.thread.timeoutInMilliseconds, where
commandKey is the route id, or set hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds
than these values will be used for the Hystrix timeout regardless of what you have set for the ribbon.* properties.
If you set either of these properties YOU are responsible for making sure it takes
into account the Ribbon connect and read timeouts as well as any retries that may happen.URL ConfigurationIf you have configured Zuul routes by specifying URLs than you will need to use
zuul.host.connect-timeout-millis and zuul.host.socket-timeout-millis.Rewriting Location headerIf Zuul is fronting a web application then there may be a need to re-write the Location header when the web application redirects through a http status code of 3XX, otherwise the browser will end up redirecting to the web application’s url instead of the Zuul url.
A LocationRewriteFilter Zuul filter can be configured to re-write the Location header to the Zuul’s url, it also adds back the stripped global and route specific prefixes. The filter can be added the following way via a Spring Configuration file:import org.springframework.cloud.netflix.zuul.filters.post.LocationRewriteFilter;
...
@Configuration
@EnableZuulProxy
public class ZuulConfig {
@Bean
public LocationRewriteFilter locationRewriteFilter() {
return new LocationRewriteFilter();
}
}Use this filter with caution though, the filter acts on the Location header of ALL 3XX response codes which may not be appropriate in all scenarios, say if the user is redirecting to an external URL.Zuul Developer GuideFor a general overview of how Zuul works, please see the Zuul Wiki.The Zuul ServletZuul is implemented as a Servlet. For the general cases, Zuul is embedded into the Spring Dispatch mechanism. This allows Spring MVC to be in control of the routing. In this case, Zuul is configured to buffer requests. If there is a need to go through Zuul without buffering requests (e.g. for large file uploads), the Servlet is also installed outside of the Spring Dispatcher. By default, this is located at /zuul. This path can be changed with the zuul.servlet-path property.Zuul RequestContextTo pass information between filters, Zuul uses a RequestContext. Its data is held in a ThreadLocal specific to each request. Information about where to route requests, errors and the actual HttpServletRequest and HttpServletResponse are stored there. The RequestContext extends ConcurrentHashMap, so anything can be stored in the context. FilterConstants contains the keys that are used by the filters installed by Spring Cloud Netflix (more on these later).@EnableZuulProxy vs. @EnableZuulServerSpring Cloud Netflix installs a number of filters based on which annotation was used to enable Zuul. @EnableZuulProxy is a superset of @EnableZuulServer. In other words, @EnableZuulProxy contains all filters installed by @EnableZuulServer. The additional filters in the "proxy" enable routing functionality. If you want a "blank" Zuul, you should use @EnableZuulServer.@EnableZuulServer FiltersCreates a SimpleRouteLocator that loads route definitions from Spring Boot configuration files.The following filters are installed (as normal Spring Beans):Pre filters:ServletDetectionFilter: Detects if the request is through the Spring Dispatcher. Sets boolean with key FilterConstants.IS_DISPATCHER_SERVLET_REQUEST_KEY.FormBodyWrapperFilter: Parses form data and reencodes it for downstream requests.DebugFilter: if the debug request parameter is set, this filter sets RequestContext.setDebugRouting() and RequestContext.setDebugRequest() to true.Route filters:SendForwardFilter: This filter forwards requests using the Servlet RequestDispatcher. The forwarding location is stored in the RequestContext attribute FilterConstants.FORWARD_TO_KEY. This is useful for forwarding to endpoints in the current application.Post filters:SendResponseFilter: Writes responses from proxied requests to the current response.Error filters:SendErrorFilter: Forwards to /error (by default) if RequestContext.getThrowable() is not null. The default forwarding path (/error) can be changed by setting the error.path property.@EnableZuulProxy FiltersCreates a DiscoveryClientRouteLocator that loads route definitions from a DiscoveryClient (like Eureka), as well as from properties. A route is created for each serviceId from the DiscoveryClient. As new services are added, the routes will be refreshed.In addition to the filters described above, the following filters are installed (as normal Spring Beans):Pre filters:PreDecorationFilter: This filter determines where and how to route based on the supplied RouteLocator. It also sets various proxy-related headers for downstream requests.Route filters:RibbonRoutingFilter: This filter uses Ribbon, Hystrix and pluggable HTTP clients to send requests. Service ids are found in the RequestContext attribute FilterConstants.SERVICE_ID_KEY. This filter can use different HTTP clients. They are:Apache HttpClient. This is the default client.Squareup OkHttpClient v3. This is enabled by having the com.squareup.okhttp3:okhttp library on the classpath and setting ribbon.okhttp.enabled=true.Netflix Ribbon HTTP client. This is enabled by setting ribbon.restclient.enabled=true. This client has limitations, such as it doesn’t support the PATCH method, but also has built-in retry.SimpleHostRoutingFilter: This filter sends requests to predetermined URLs via an Apache HttpClient. URLs are found in RequestContext.getRouteHost().Custom Zuul Filter examplesMost of the following "How to Write" examples below are included Sample Zuul Filters project. There are also examples of manipulating the request or response body in that repository.How to Write a Pre FilterPre filters are used to set up data in the RequestContext for use in filters downstream. The main use case is to set information required for route filters.public class QueryParamPreFilter extends ZuulFilter {
@Override
public int filterOrder() {
return PRE_DECORATION_FILTER_ORDER - 1; // run before PreDecoration
}
@Override
public String filterType() {
return PRE_TYPE;
}
@Override
public boolean shouldFilter() {
RequestContext ctx = RequestContext.getCurrentContext();
return !ctx.containsKey(FORWARD_TO_KEY) // a filter has already forwarded
&& !ctx.containsKey(SERVICE_ID_KEY); // a filter has already determined serviceId
}
@Override
public Object run() {
RequestContext ctx = RequestContext.getCurrentContext();
HttpServletRequest request = ctx.getRequest();
if (request.getParameter("foo") != null) {
// put the serviceId in `RequestContext`
ctx.put(SERVICE_ID_KEY, request.getParameter("foo"));
}
return null;
}
}The filter above populates SERVICE_ID_KEY from the foo request parameter. In reality, it’s not a good idea to do that kind of direct mapping, but the service id should be looked up from the value of foo instead.Now that SERVICE_ID_KEY is populated, PreDecorationFilter won’t run and RibbonRoutingFilter will. If you wanted to route to a full URL instead, call ctx.setRouteHost(url) instead.To modify the path that routing filters will forward to, set the REQUEST_URI_KEY.How to Write a Route FilterRoute filters are run after pre filters and are used to make requests to other services. Much of the work here is to translate request and response data to and from the client required model.public class OkHttpRoutingFilter extends ZuulFilter {
@Autowired
private ProxyRequestHelper helper;
@Override
public String filterType() {
return ROUTE_TYPE;
}
@Override
public int filterOrder() {
return SIMPLE_HOST_ROUTING_FILTER_ORDER - 1;
}
@Override
public boolean shouldFilter() {
return RequestContext.getCurrentContext().getRouteHost() != null
&& RequestContext.getCurrentContext().sendZuulResponse();
}
@Override
public Object run() {
OkHttpClient httpClient = new OkHttpClient.Builder()
// customize
.build();
RequestContext context = RequestContext.getCurrentContext();
HttpServletRequest request = context.getRequest();
String method = request.getMethod();
String uri = this.helper.buildZuulRequestURI(request);
Headers.Builder headers = new Headers.Builder();
Enumeration<String> headerNames = request.getHeaderNames();
while (headerNames.hasMoreElements()) {
String name = headerNames.nextElement();
Enumeration<String> values = request.getHeaders(name);
while (values.hasMoreElements()) {
String value = values.nextElement();
headers.add(name, value);
}
}
InputStream inputStream = request.getInputStream();
RequestBody requestBody = null;
if (inputStream != null && HttpMethod.permitsRequestBody(method)) {
MediaType mediaType = null;
if (headers.get("Content-Type") != null) {
mediaType = MediaType.parse(headers.get("Content-Type"));
}
requestBody = RequestBody.create(mediaType, StreamUtils.copyToByteArray(inputStream));
}
Request.Builder builder = new Request.Builder()
.headers(headers.build())
.url(uri)
.method(method, requestBody);
Response response = httpClient.newCall(builder.build()).execute();
LinkedMultiValueMap<String, String> responseHeaders = new LinkedMultiValueMap<>();
for (Map.Entry<String, List<String>> entry : response.headers().toMultimap().entrySet()) {
responseHeaders.put(entry.getKey(), entry.getValue());
}
this.helper.setResponse(response.code(), response.body().byteStream(),
responseHeaders);
context.setRouteHost(null); // prevent SimpleHostRoutingFilter from running
return null;
}
}The above filter translates Servlet request information into OkHttp3 request information, executes an HTTP request, then translates OkHttp3 reponse information to the Servlet response. WARNING: this filter might have bugs and not function correctly.How to Write a Post FilterPost filters typically manipulate the response. In the filter below, we add a random UUID as the X-Foo header. Other manipulations, such as transforming the response body, are much more complex and compute-intensive.public class AddResponseHeaderFilter extends ZuulFilter {
@Override
public String filterType() {
return POST_TYPE;
}
@Override
public int filterOrder() {
return SEND_RESPONSE_FILTER_ORDER - 1;
}
@Override
public boolean shouldFilter() {
return true;
}
@Override
public Object run() {
RequestContext context = RequestContext.getCurrentContext();
HttpServletResponse servletResponse = context.getResponse();
servletResponse.addHeader("X-Foo", UUID.randomUUID().toString());
return null;
}
}How Zuul Errors WorkIf an exception is thrown during any portion of the Zuul filter lifecycle, the error filters are executed. The SendErrorFilter is only run if RequestContext.getThrowable() is not null. It then sets specific javax.servlet.error.* attributes in the request and forwards the request to the Spring Boot error page.Zuul Eager Application Context LoadingZuul internally uses Ribbon for calling the remote url’s and Ribbon clients are by default lazily loaded up by Spring Cloud on first call.
This behavior can be changed for Zuul using the following configuration and will result in the child Ribbon related Application contexts being eagerly loaded up at application startup time.application.ymlzuul:
ribbon:
eager-load:
enabled: truePolyglot support with SidecarDo you have non-jvm languages you want to take advantage of Eureka, Ribbon and
Config Server? The Spring Cloud Netflix Sidecar was inspired by
Netflix Prana. It includes a simple http api
to get all of the instances (ie host and port) for a given service. You can
also proxy service calls through an embedded Zuul proxy which gets its route
entries from Eureka. The Spring Cloud Config Server can be accessed directly
via host lookup or through the Zuul Proxy. The non-jvm app should implement
a health check so the Sidecar can report to eureka if the app is up or down.To include Sidecar in your project use the dependency with group org.springframework.cloud
and artifact id spring-cloud-netflix-sidecar.To enable the Sidecar, create a Spring Boot application with @EnableSidecar.
This annotation includes @EnableCircuitBreaker, @EnableDiscoveryClient,
and @EnableZuulProxy. Run the resulting application on the same host as the
non-jvm application.To configure the side car add sidecar.port and sidecar.health-uri to application.yml.
The sidecar.port property is the port the non-jvm app is listening on. This
is so the Sidecar can properly register the app with Eureka. The sidecar.health-uri
is a uri accessible on the non-jvm app that mimicks a Spring Boot health
indicator. It should return a json document like the following:health-uri-document{
"status":"UP"
}Here is an example application.yml for a Sidecar application:application.ymlserver:
port: 5678
spring:
application:
name: sidecar
sidecar:
port: 8000
health-uri: http://localhost:8000/health.jsonThe api for the DiscoveryClient.getInstances() method is /hosts/{serviceId}.
Here is an example response for /hosts/customers that returns two instances on
different hosts. This api is accessible to the non-jvm app (if the sidecar is
on port 5678) at http://localhost:5678/hosts/{serviceId}./hosts/customers[
{
"host": "myhost",
"port": 9000,
"uri": "http://myhost:9000",
"serviceId": "CUSTOMERS",
"secure": false
},
{
"host": "myhost2",
"port": 9000,
"uri": "http://myhost2:9000",
"serviceId": "CUSTOMERS",
"secure": false
}
]The Zuul proxy automatically adds routes for each service known in eureka to
/<serviceId>, so the customers service is available at /customers. The
Non-jvm app can access the customer service via http://localhost:5678/customers
(assuming the sidecar is listening on port 5678).If the Config Server is registered with Eureka, non-jvm application can access
it via the Zuul proxy. If the serviceId of the ConfigServer is configserver
and the Sidecar is on port 5678, then it can be accessed at
http://localhost:5678/configserverNon-jvm app can take advantage of the Config Server’s ability to return YAML
documents. For example, a call to http://sidecar.local.spring.io:5678/configserver/default-master.yml
might result in a YAML document like the followingeureka:
client:
serviceUrl:
defaultZone: http://localhost:8761/eureka/
password: password
info:
description: Spring Cloud Samples
url: https://github.com/spring-cloud-samplesRxJava with Spring MVCSpring Cloud Netflix includes RxJava.
RxJava is a Java VM implementation of Reactive Extensions: a library for composing asynchronous and event-based programs by using observable sequences.
you could use a Spring Cloud Function app, instead of just a jar with a POF in it, in which case you would have to change the way the app runs in the container so that it picks up the main class as a source file. For example, you could change the ENTRYPOINT above and add --spring.main.sources=com.example.SampleApplication.
Build the Docker image:docker build -t [username/appname] .Push the Docker image:docker push [username/appname]Use the OpenWhisk CLI (e.g. after vagrant ssh) to create the action:wsk action create example --docker [username/appname]Invoke the action:wsk action invoke example --result --param payload foo
{
"result": "FOO"
}Appendix: Compendium of Configuration Propertiessetting 'ivy.default.settings.dir' to 'jar:file:/Users/ryanjbaxter/.sdkman/candidates/groovy/current/lib/ivy-2.4.0.jar!/org/apache/ivy/core/settings'
setting 'ivy.basedir' to '/Users/ryanjbaxter/git-repos/spring-cloud-samples/scripts/.'
setting 'ivy.default.conf.dir' to 'jar:file:/Users/ryanjbaxter/.sdkman/candidates/groovy/current/lib/ivy-2.4.0.jar!/org/apache/ivy/core/settings'
setting 'java.runtime.name' to 'Java™ SE Runtime Environment'
setting 'sun.boot.library.path' to '/Library/Java/JavaVirtualMachines/jdk1.8.0_91.jdk/Contents/Home/jre/lib'
setting 'java.vm.version' to '25.91-b14'
setting 'groovy.grape.report.downloads' to 'true'
setting 'gopherProxySet' to 'false'
setting 'java.vm.vendor' to 'Oracle Corporation'
setting 'java.vendor.url' to 'http://java.oracle.com/'
setting 'path.separator' to ':'
setting 'java.vm.name' to 'Java HotSpot™ 64-Bit Server VM'
setting 'file.encoding.pkg' to 'sun.io'
setting 'user.country' to 'US'
setting 'sun.java.launcher' to 'SUN_STANDARD'
setting 'sun.os.patch.level' to 'unknown'
setting 'program.name' to 'groovy'
setting 'java.vm.specification.name' to 'Java Virtual Machine Specification'
setting 'user.dir' to '/Users/ryanjbaxter/git-repos/spring-cloud-samples/scripts'
setting 'java.runtime.version' to '1.8.0_91-b14'
setting 'java.awt.graphicsenv' to 'sun.awt.CGraphicsEnvironment'
setting 'java.endorsed.dirs' to '/Library/Java/JavaVirtualMachines/jdk1.8.0_91.jdk/Contents/Home/jre/lib/endorsed'
setting 'os.arch' to 'x86_64'
setting 'java.io.tmpdir' to '/var/folders/k3/zv8hzdm17vv69j485fv3cf9r0000gn/T/'
setting 'line.separator' to '
'
setting 'java.vm.specification.vendor' to 'Oracle Corporation'
setting 'os.name' to 'Mac OS X'
setting 'tools.jar' to '/Library/Java/JavaVirtualMachines/jdk1.8.0_91.jdk/Contents/Home/lib/tools.jar'
setting 'sun.jnu.encoding' to 'UTF-8'
setting 'script.name' to '/Users/ryanjbaxter/.sdkman/candidates/groovy/current/bin/groovy'
setting 'java.library.path' to '/Users/ryanjbaxter/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.'
setting 'java.specification.name' to 'Java Platform API Specification'
setting 'java.class.version' to '52.0'
setting 'sun.management.compiler' to 'HotSpot 64-Bit Tiered Compilers'
setting 'os.version' to '10.13.5'
setting 'http.nonProxyHosts' to 'local|.local|169.254/16|.169.254/16'
setting 'user.home' to '/Users/ryanjbaxter'
setting 'user.timezone' to ''
setting 'java.awt.printerjob' to 'sun.lwawt.macosx.CPrinterJob'
setting 'file.encoding' to 'UTF-8'
setting 'java.specification.version' to '1.8'
setting 'java.class.path' to '/Users/ryanjbaxter/.sdkman/candidates/groovy/current/lib/groovy-2.4.15.jar'
setting 'user.name' to 'ryanjbaxter'
setting 'ivy.message.logger.level' to '4'
setting 'java.vm.specification.version' to '1.8'
setting 'sun.java.command' to 'org.codehaus.groovy.tools.GroovyStarter --main groovy.ui.GroovyMain --conf /Users/ryanjbaxter/.sdkman/candidates/groovy/current/conf/groovy-starter.conf --classpath . docs/src/main/asciidoc/configprops.groovy'
setting 'java.home' to '/Library/Java/JavaVirtualMachines/jdk1.8.0_91.jdk/Contents/Home/jre'
setting 'sun.arch.data.model' to '64'
setting 'user.language' to 'en'
setting 'java.specification.vendor' to 'Oracle Corporation'
setting 'awt.toolkit' to 'sun.lwawt.macosx.LWCToolkit'
setting 'java.vm.info' to 'mixed mode'
setting 'java.version' to '1.8.0_91'
setting 'java.ext.dirs' to '/Users/ryanjbaxter/Library/Java/Extensions:/Library/Java/JavaVirtualMachines/jdk1.8.0_91.jdk/Contents/Home/jre/lib/ext:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java'
setting 'sun.boot.class.path' to '/Library/Java/JavaVirtualMachines/jdk1.8.0_91.jdk/Contents/Home/jre/lib/resources.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_91.jdk/Contents/Home/jre/lib/rt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_91.jdk/Contents/Home/jre/lib/sunrsasign.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_91.jdk/Contents/Home/jre/lib/jsse.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_91.jdk/Contents/Home/jre/lib/jce.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_91.jdk/Contents/Home/jre/lib/charsets.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_91.jdk/Contents/Home/jre/lib/jfr.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_91.jdk/Contents/Home/jre/classes'
setting 'java.vendor' to 'Oracle Corporation'
setting 'file.separator' to '/'
setting 'java.vendor.url.bug' to 'http://bugreport.sun.com/bugreport/'
setting 'sun.io.unicode.encoding' to 'UnicodeBig'
setting 'sun.cpu.endian' to 'little'
setting 'groovy.starter.conf' to '/Users/ryanjbaxter/.sdkman/candidates/groovy/current/conf/groovy-starter.conf'
setting 'socksNonProxyHosts' to 'local|.local|169.254/16|.169.254/16'
setting 'ftp.nonProxyHosts' to 'local|.local|169.254/16|.169.254/16'
setting 'groovy.home' to '/Users/ryanjbaxter/.sdkman/candidates/groovy/current'
setting 'sun.cpu.isalist' to ''
:: loading settings :: url = jar:file:/Users/ryanjbaxter/.sdkman/candidates/groovy/current/lib/groovy-2.4.15.jar!/groovy/grape/defaultGrapeConfig.xml
setting 'ivy.settings.url' to 'jar:file:/Users/ryanjbaxter/.sdkman/candidates/groovy/current/lib/groovy-2.4.15.jar!/groovy/grape/defaultGrapeConfig.xml'
setting 'ivy.conf.url' to 'jar:file:/Users/ryanjbaxter/.sdkman/candidates/groovy/current/lib/groovy-2.4.15.jar!/groovy/grape/defaultGrapeConfig.xml'
setting 'ivy.settings.dir' to 'jar:file:/Users/ryanjbaxter/.sdkman/candidates/groovy/current/lib/groovy-2.4.15.jar!/groovy/grape'
setting 'ivy.settings.dir.url' to 'jar:file:/Users/ryanjbaxter/.sdkman/candidates/groovy/current/lib/groovy-2.4.15.jar!/groovy/grape'
setting 'ivy.conf.dir' to 'jar:file:/Users/ryanjbaxter/.sdkman/candidates/groovy/current/lib/groovy-2.4.15.jar!/groovy/grape'
setting 'ivy.default.ivy.user.dir' to '/Users/ryanjbaxter/.ivy2'
setting 'ivy.home' to '/Users/ryanjbaxter/.ivy2'
no default ivy user dir defined: set to /Users/ryanjbaxter/.ivy2
setting 'ivy.log.modules.in.use' to 'false'
setting 'ivy.resolver.default.check.modified' to 'false'
setting 'ivy.default.always.check.exact.revision' to 'false'
setting 'ivy.retrieve.pattern' to '${ivy.lib.dir}/[artifact]-[revision](-[classifier]).[ext]'
setting 'ivy.configurations' to ''
setting 'ivy.buildlist.ivyfilepath' to 'ivy.xml'
setting 'ivy.status' to 'integration'
setting 'ivy.resolve.default.type.filter' to ''
setting 'ivy.project.dir' to '$../../../..'
setting 'ivy.dep.file' to 'ivy.xml'
setting 'ivy.settings.file' to 'ivysettings.xml'
setting 'ivy.report.output.pattern' to '[organisation]-[module]-[conf].[ext]'
setting 'ivy.cache.ttl.default' to '10s'
setting 'ivy.publish.src.artifacts.pattern' to '${ivy.distrib.dir}/[type]s/[artifact]-[revision](-[classifier]).[ext]'
setting 'ivy.deliver.ivy.pattern' to '${ivy.distrib.dir}/[type]s/[artifact]-[revision](-[classifier]).[ext]'
setting 'ivy.build.artifacts.dir' to '${ivy.project.dir}/build/artifacts'
setting 'ivy.checksums' to 'sha1,md5'
setting 'ivy.distrib.dir' to '${ivy.project.dir}/distrib'
setting 'ivy.lib.dir' to '${ivy.project.dir}/lib'
setting 'ivy.cache.dir' to '/Users/ryanjbaxter/.ivy2/cache'
no default cache defined: set to /Users/ryanjbaxter/.ivy2/cache
downloadGrapes: no namespace defined: using system
downloadGrapes: no latest strategy defined: using default
jcenter: no namespace defined: using system
jcenter: no latest strategy defined: using default
cachedGrapes: no namespace defined: using system
cachedGrapes: no latest strategy defined: using default
localm2: no namespace defined: using system
localm2: no latest strategy defined: using default
ibiblio: no namespace defined: using system
ibiblio: no latest strategy defined: using default
'ivy.default.ivy.user.dir' already set: discarding '/Users/ryanjbaxter/.ivy2'
settings loaded (440ms)
default cache: /Users/ryanjbaxter/.ivy2/cache
default resolver: downloadGrapes
default latest strategy: latest-revision
default conflict manager: latest-revision
circular dependency strategy: warn
validate: true
check up2date: true
-- 5 resolvers:
downloadGrapes [chain] [cachedGrapes, localm2, jcenter, ibiblio]
return first: true
dual: false
→ cachedGrapes
→ localm2
→ jcenter
→ ibiblio
jcenter [ibiblio]
cache: null
m2compatible: true
ivy patterns:
organisation/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]
artifact patterns:
organisation/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]
repository: jcenter
root: https://jcenter.bintray.com/
pattern: [organisation]/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]
usepoms: true
useMavenMetadata: true
cachedGrapes [file]
cache: null
m2compatible: false
ivy patterns:
/Users/ryanjbaxter/.groovy/grapes/[organisation]/[module]/ivy-[revision].xml
artifact patterns:
/Users/ryanjbaxter/.groovy/grapes/[organisation]/[module]/[type]s/[artifact]-[revision](-[classifier]).[ext]
repository: cachedGrapes
localm2 [ibiblio]
cache: null
m2compatible: true
ivy patterns:
file:/Users/ryanjbaxter/.m2/repository/[organisation]/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]
artifact patterns:
file:/Users/ryanjbaxter/.m2/repository/[organisation]/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]
repository: localm2
root: file:/Users/ryanjbaxter/.m2/repository/
pattern: [organisation]/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]
usepoms: true
useMavenMetadata: true
ibiblio [ibiblio]
cache: null
m2compatible: true
ivy patterns:
organisation/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]
artifact patterns:
organisation/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]
repository: ibiblio
root: https://repo1.maven.org/maven2/
pattern: [organisation]/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]
usepoms: true
useMavenMetadata: true
module settings:
NONE
'ivy.cache.dir' already set: discarding '/Users/ryanjbaxter/.groovy/grapes'
setting 'ivy.default.configuration.m2compatible' to 'true'
setting 'ivy.default.settings.dir' to 'jar:file:/Users/ryanjbaxter/.sdkman/candidates/groovy/current/lib/ivy-2.4.0.jar!/org/apache/ivy/core/settings'
setting 'ivy.basedir' to '/Users/ryanjbaxter/git-repos/spring-cloud-samples/scripts/.'
setting 'ivy.default.conf.dir' to 'jar:file:/Users/ryanjbaxter/.sdkman/candidates/groovy/current/lib/ivy-2.4.0.jar!/org/apache/ivy/core/settings'
setting 'java.runtime.name' to 'Java™ SE Runtime Environment'
setting 'sun.boot.library.path' to '/Library/Java/JavaVirtualMachines/jdk1.8.0_91.jdk/Contents/Home/jre/lib'
setting 'java.vm.version' to '25.91-b14'
setting 'groovy.grape.report.downloads' to 'true'
setting 'gopherProxySet' to 'false'
setting 'java.vm.vendor' to 'Oracle Corporation'
setting 'java.vendor.url' to 'http://java.oracle.com/'
setting 'path.separator' to ':'
setting 'java.vm.name' to 'Java HotSpot™ 64-Bit Server VM'
setting 'file.encoding.pkg' to 'sun.io'
setting 'user.country' to 'US'
setting 'sun.java.launcher' to 'SUN_STANDARD'
setting 'sun.os.patch.level' to 'unknown'
setting 'program.name' to 'groovy'
setting 'java.vm.specification.name' to 'Java Virtual Machine Specification'
setting 'user.dir' to '/Users/ryanjbaxter/git-repos/spring-cloud-samples/scripts'
setting 'java.runtime.version' to '1.8.0_91-b14'
setting 'java.awt.graphicsenv' to 'sun.awt.CGraphicsEnvironment'
setting 'java.endorsed.dirs' to '/Library/Java/JavaVirtualMachines/jdk1.8.0_91.jdk/Contents/Home/jre/lib/endorsed'
setting 'os.arch' to 'x86_64'
setting 'java.io.tmpdir' to '/var/folders/k3/zv8hzdm17vv69j485fv3cf9r0000gn/T/'
setting 'line.separator' to '
'
setting 'java.vm.specification.vendor' to 'Oracle Corporation'
setting 'os.name' to 'Mac OS X'
setting 'tools.jar' to '/Library/Java/JavaVirtualMachines/jdk1.8.0_91.jdk/Contents/Home/lib/tools.jar'
setting 'sun.jnu.encoding' to 'UTF-8'
setting 'script.name' to '/Users/ryanjbaxter/.sdkman/candidates/groovy/current/bin/groovy'
setting 'java.library.path' to '/Users/ryanjbaxter/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.'
setting 'java.specification.name' to 'Java Platform API Specification'
setting 'java.class.version' to '52.0'
setting 'sun.management.compiler' to 'HotSpot 64-Bit Tiered Compilers'
setting 'os.version' to '10.13.5'
setting 'http.nonProxyHosts' to 'local|.local|169.254/16|.169.254/16'
setting 'user.home' to '/Users/ryanjbaxter'
setting 'user.timezone' to 'America/New_York'
setting 'java.awt.printerjob' to 'sun.lwawt.macosx.CPrinterJob'
setting 'file.encoding' to 'UTF-8'
setting 'java.specification.version' to '1.8'
setting 'java.class.path' to '/Users/ryanjbaxter/.sdkman/candidates/groovy/current/lib/groovy-2.4.15.jar'
setting 'user.name' to 'ryanjbaxter'
setting 'ivy.message.logger.level' to '4'
setting 'java.vm.specification.version' to '1.8'
setting 'sun.java.command' to 'org.codehaus.groovy.tools.GroovyStarter --main groovy.ui.GroovyMain --conf /Users/ryanjbaxter/.sdkman/candidates/groovy/current/conf/groovy-starter.conf --classpath . docs/src/main/asciidoc/configprops.groovy'
setting 'java.home' to '/Library/Java/JavaVirtualMachines/jdk1.8.0_91.jdk/Contents/Home/jre'
setting 'sun.arch.data.model' to '64'
setting 'user.language' to 'en'
setting 'java.specification.vendor' to 'Oracle Corporation'
setting 'awt.toolkit' to 'sun.lwawt.macosx.LWCToolkit'
setting 'java.vm.info' to 'mixed mode'
setting 'java.version' to '1.8.0_91'
setting 'java.ext.dirs' to '/Users/ryanjbaxter/Library/Java/Extensions:/Library/Java/JavaVirtualMachines/jdk1.8.0_91.jdk/Contents/Home/jre/lib/ext:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java'
setting 'sun.boot.class.path' to '/Library/Java/JavaVirtualMachines/jdk1.8.0_91.jdk/Contents/Home/jre/lib/resources.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_91.jdk/Contents/Home/jre/lib/rt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_91.jdk/Contents/Home/jre/lib/sunrsasign.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_91.jdk/Contents/Home/jre/lib/jsse.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_91.jdk/Contents/Home/jre/lib/jce.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_91.jdk/Contents/Home/jre/lib/charsets.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_91.jdk/Contents/Home/jre/lib/jfr.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_91.jdk/Contents/Home/jre/classes'
setting 'java.vendor' to 'Oracle Corporation'
setting 'file.separator' to '/'
setting 'java.vendor.url.bug' to 'http://bugreport.sun.com/bugreport/'
setting 'sun.io.unicode.encoding' to 'UnicodeBig'
setting 'sun.cpu.endian' to 'little'
setting 'groovy.starter.conf' to '/Users/ryanjbaxter/.sdkman/candidates/groovy/current/conf/groovy-starter.conf'
setting 'socksNonProxyHosts' to 'local|.local|169.254/16|.169.254/16'
setting 'ftp.nonProxyHosts' to 'local|.local|169.254/16|.169.254/16'
setting 'groovy.home' to '/Users/ryanjbaxter/.sdkman/candidates/groovy/current'
setting 'sun.cpu.isalist' to ''
:: loading settings :: url = jar:file:/Users/ryanjbaxter/.sdkman/candidates/groovy/current/lib/ivy-2.4.0.jar!/org/apache/ivy/core/settings/ivysettings.xml
setting 'ivy.settings.url' to 'jar:file:/Users/ryanjbaxter/.sdkman/candidates/groovy/current/lib/ivy-2.4.0.jar!/org/apache/ivy/core/settings/ivysettings.xml'
setting 'ivy.conf.url' to 'jar:file:/Users/ryanjbaxter/.sdkman/candidates/groovy/current/lib/ivy-2.4.0.jar!/org/apache/ivy/core/settings/ivysettings.xml'
setting 'ivy.settings.dir' to 'jar:file:/Users/ryanjbaxter/.sdkman/candidates/groovy/current/lib/ivy-2.4.0.jar!/org/apache/ivy/core/settings'
setting 'ivy.settings.dir.url' to 'jar:file:/Users/ryanjbaxter/.sdkman/candidates/groovy/current/lib/ivy-2.4.0.jar!/org/apache/ivy/core/settings'
setting 'ivy.conf.dir' to 'jar:file:/Users/ryanjbaxter/.sdkman/candidates/groovy/current/lib/ivy-2.4.0.jar!/org/apache/ivy/core/settings'
setting 'ivy.default.ivy.user.dir' to '/Users/ryanjbaxter/.ivy2'
setting 'ivy.home' to '/Users/ryanjbaxter/.ivy2'
no default ivy user dir defined: set to /Users/ryanjbaxter/.ivy2
setting 'ivy.log.modules.in.use' to 'false'
setting 'ivy.resolver.default.check.modified' to 'false'
setting 'ivy.default.always.check.exact.revision' to 'false'
setting 'ivy.retrieve.pattern' to '${ivy.lib.dir}/[artifact]-[revision](-[classifier]).[ext]'
setting 'ivy.configurations' to ''
setting 'ivy.buildlist.ivyfilepath' to 'ivy.xml'
setting 'ivy.status' to 'integration'
setting 'ivy.resolve.default.type.filter' to ''
setting 'ivy.project.dir' to '$../../../..'
setting 'ivy.dep.file' to 'ivy.xml'
setting 'ivy.settings.file' to 'ivysettings.xml'
setting 'ivy.report.output.pattern' to '[organisation]-[module]-[conf].[ext]'
setting 'ivy.cache.ttl.default' to '10s'
setting 'ivy.publish.src.artifacts.pattern' to '${ivy.distrib.dir}/[type]s/[artifact]-[revision](-[classifier]).[ext]'
setting 'ivy.deliver.ivy.pattern' to '${ivy.distrib.dir}/[type]s/[artifact]-[revision](-[classifier]).[ext]'
setting 'ivy.build.artifacts.dir' to '${ivy.project.dir}/build/artifacts'
setting 'ivy.checksums' to 'sha1,md5'
setting 'ivy.distrib.dir' to '${ivy.project.dir}/distrib'
setting 'ivy.lib.dir' to '${ivy.project.dir}/lib'
including url: jar:file:/Users/ryanjbaxter/.sdkman/candidates/groovy/current/lib/ivy-2.4.0.jar!/org/apache/ivy/core/settings/ivysettings-public.xml
setting 'ivy.settings.dir.url' to 'jar:file:/Users/ryanjbaxter/.sdkman/candidates/groovy/current/lib/ivy-2.4.0.jar!/org/apache/ivy/core/settings'
setting 'ivy.cache.dir' to '/Users/ryanjbaxter/.ivy2/cache'
no default cache defined: set to /Users/ryanjbaxter/.ivy2/cache
public: no namespace defined: using system
public: no latest strategy defined: using default
including url: jar:file:/Users/ryanjbaxter/.sdkman/candidates/groovy/current/lib/ivy-2.4.0.jar!/org/apache/ivy/core/settings/ivysettings-shared.xml
setting 'ivy.settings.dir.url' to 'jar:file:/Users/ryanjbaxter/.sdkman/candidates/groovy/current/lib/ivy-2.4.0.jar!/org/apache/ivy/core/settings'
setting 'ivy.shared.default.root' to '/Users/ryanjbaxter/.ivy2/shared'
setting 'ivy.shared.default.ivy.pattern' to '[organisation]/[module]/[revision]/[type]s/[artifact].[ext]'
setting 'ivy.shared.default.artifact.pattern' to '[organisation]/[module]/[revision]/[type]s/[artifact].[ext]'
shared: no namespace defined: using system
shared: no latest strategy defined: using default
public: no namespace defined: using system
public: no latest strategy defined: using default
including url: jar:file:/Users/ryanjbaxter/.sdkman/candidates/groovy/current/lib/ivy-2.4.0.jar!/org/apache/ivy/core/settings/ivysettings-local.xml
setting 'ivy.settings.dir.url' to 'jar:file:/Users/ryanjbaxter/.sdkman/candidates/groovy/current/lib/ivy-2.4.0.jar!/org/apache/ivy/core/settings'
setting 'ivy.local.default.root' to '/Users/ryanjbaxter/.ivy2/local'
setting 'ivy.local.default.ivy.pattern' to '[organisation]/[module]/[revision]/[type]s/[artifact].[ext]'
setting 'ivy.local.default.artifact.pattern' to '[organisation]/[module]/[revision]/[type]s/[artifact].[ext]'
shared: no namespace defined: using system
shared: no latest strategy defined: using default
public: no namespace defined: using system
public: no latest strategy defined: using default
local: no namespace defined: using system
local: no latest strategy defined: using default
including url: jar:file:/Users/ryanjbaxter/.sdkman/candidates/groovy/current/lib/ivy-2.4.0.jar!/org/apache/ivy/core/settings/ivysettings-main-chain.xml
setting 'ivy.settings.dir.url' to 'jar:file:/Users/ryanjbaxter/.sdkman/candidates/groovy/current/lib/ivy-2.4.0.jar!/org/apache/ivy/core/settings'
shared: no namespace defined: using system
shared: no latest strategy defined: using default
public: no namespace defined: using system
public: no latest strategy defined: using default
main: no namespace defined: using system
main: no latest strategy defined: using default
local: no namespace defined: using system
local: no latest strategy defined: using default
including url: jar:file:/Users/ryanjbaxter/.sdkman/candidates/groovy/current/lib/ivy-2.4.0.jar!/org/apache/ivy/core/settings/ivysettings-default-chain.xml
setting 'ivy.settings.dir.url' to 'jar:file:/Users/ryanjbaxter/.sdkman/candidates/groovy/current/lib/ivy-2.4.0.jar!/org/apache/ivy/core/settings'
shared: no namespace defined: using system
shared: no latest strategy defined: using default
default: no namespace defined: using system
default: no latest strategy defined: using default
public: no namespace defined: using system
public: no latest strategy defined: using default
main: no namespace defined: using system
main: no latest strategy defined: using default
local: no namespace defined: using system
local: no latest strategy defined: using default
shared: no namespace defined: using system
shared: no latest strategy defined: using default
default: no namespace defined: using system
default: no latest strategy defined: using default
public: no namespace defined: using system
public: no latest strategy defined: using default
main: no namespace defined: using system
main: no latest strategy defined: using default
local: no namespace defined: using system
local: no latest strategy defined: using default
'ivy.default.ivy.user.dir' already set: discarding '/Users/ryanjbaxter/.ivy2'
settings loaded (16ms)
default cache: /Users/ryanjbaxter/.ivy2/cache
default resolver: default
default latest strategy: latest-revision
default conflict manager: latest-revision
circular dependency strategy: warn
validate: true
check up2date: true
-- 5 resolvers:
shared [file]
cache: null
m2compatible: false
ivy patterns:
/Users/ryanjbaxter/.ivy2/shared/[organisation]/[module]/[revision]/[type]s/[artifact].[ext]
artifact patterns:
/Users/ryanjbaxter/.ivy2/shared/[organisation]/[module]/[revision]/[type]s/[artifact].[ext]
repository: shared
default [chain] [local, main]
return first: true
dual: false
→ local
→ main
public [ibiblio]
cache: null
m2compatible: true
ivy patterns:
organisation/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]
artifact patterns:
organisation/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]
repository: public
root: https://repo1.maven.org/maven2/
pattern: [organisation]/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]
usepoms: true
useMavenMetadata: true
main [chain] [shared, public]
return first: false
dual: true
→ shared
→ public
local [file]
cache: null
m2compatible: false
ivy patterns:
/Users/ryanjbaxter/.ivy2/local/[organisation]/[module]/[revision]/[type]s/[artifact].[ext]
artifact patterns:
/Users/ryanjbaxter/.ivy2/local/[organisation]/[module]/[revision]/[type]s/[artifact].[ext]
repository: local
module settings:
NONE
:: resolving dependencies :: caller#all-caller;working77
confs: [default]
validate = false
refresh = false
resolving dependencies for configuration 'default'
== resolving dependencies for caller#all-caller;working77 [default]
loadData of caller#all-caller;working77 of rootConf=default
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE {default=[default]}
no ivy file in cache for org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway-mvc/ivy-1.0.2.RELEASE.xml
no ivy file in cache for org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway-mvc/ivy-1.0.2.RELEASE.xml
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway-mvc/ivy-1.0.2.RELEASE.xml
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway-mvc/ivy-1.0.2.RELEASE.xml
cachedGrapes: resource not reachable for org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway-mvc/ivy-1.0.2.RELEASE.xml
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway-mvc/jars/spring-cloud-gateway-mvc-1.0.2.RELEASE.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway-mvc/jars/spring-cloud-gateway-mvc-1.0.2.RELEASE.jar
cachedGrapes: resource not reachable for org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway-mvc/jars/spring-cloud-gateway-mvc-1.0.2.RELEASE.jar
cachedGrapes: no ivy file nor artifact found for org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE
don’t use cache for org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE: checkModified=true
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/cloud/spring-cloud-gateway-mvc/1.0.2.RELEASE/spring-cloud-gateway-mvc-1.0.2.RELEASE.pom
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/cloud/spring-cloud-gateway-mvc/1.0.2.RELEASE/spring-cloud-gateway-mvc-1.0.2.RELEASE.pom
localm2: resource not reachable for org/springframework/cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE: res=file:/Users/ryanjbaxter/.m2/repository/org/springframework/cloud/spring-cloud-gateway-mvc/1.0.2.RELEASE/spring-cloud-gateway-mvc-1.0.2.RELEASE.pom
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/cloud/spring-cloud-gateway-mvc/1.0.2.RELEASE/spring-cloud-gateway-mvc-1.0.2.RELEASE.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/cloud/spring-cloud-gateway-mvc/1.0.2.RELEASE/spring-cloud-gateway-mvc-1.0.2.RELEASE.jar
localm2: resource not reachable for org/springframework/cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE: res=file:/Users/ryanjbaxter/.m2/repository/org/springframework/cloud/spring-cloud-gateway-mvc/1.0.2.RELEASE/spring-cloud-gateway-mvc-1.0.2.RELEASE.jar
localm2: no ivy file nor artifact found for org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE
no ivy file in cache for org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway-mvc/ivy-1.0.2.RELEASE.xml
trying https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway-mvc/1.0.2.RELEASE/spring-cloud-gateway-mvc-1.0.2.RELEASE.pom
tried https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway-mvc/1.0.2.RELEASE/spring-cloud-gateway-mvc-1.0.2.RELEASE.pom
Execution environment profile JavaSE-1.2 loaded
Execution environment profile JavaSE-1.3 loaded
Execution environment profile JavaSE-1.4 loaded
Execution environment profile JavaSE-1.5 loaded
Execution environment profile JavaSE-1.6 loaded
Execution environment profile JavaSE-1.7 loaded
Execution environment profile OSGi/Minimum-1.1 loaded
Execution environment profile JavaSE-1.8 loaded
Execution environment profile CDC-1.0/Foundation-1.0 loaded
Execution environment profile CDC-1.1/Foundation-1.1 loaded
Execution environment profile OSGi/Minimum-1.2 loaded
Execution environment profile OSGi/Minimum-1.0 loaded
jcenter: found md file for org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE
⇒ https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway-mvc/1.0.2.RELEASE/spring-cloud-gateway-mvc-1.0.2.RELEASE.pom (1.0.2.RELEASE)
parser = pom parser
no ivy file in cache for org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway-mvc/ivy-1.0.2.RELEASE.xml
downloading https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway-mvc/1.0.2.RELEASE/spring-cloud-gateway-mvc-1.0.2.RELEASE.pom …
jcenter: downloading https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway-mvc/1.0.2.RELEASE/spring-cloud-gateway-mvc-1.0.2.RELEASE.pom
to /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway-mvc/ivy-1.0.2.RELEASE.xml.original.part
HTTP response status: 404 url=https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway-mvc/1.0.2.RELEASE/spring-cloud-gateway-mvc-1.0.2.RELEASE.pom.sha1
CLIENT ERROR: Not Found url=https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway-mvc/1.0.2.RELEASE/spring-cloud-gateway-mvc-1.0.2.RELEASE.pom.sha1
md5 file found for https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway-mvc/1.0.2.RELEASE/spring-cloud-gateway-mvc-1.0.2.RELEASE.pom: checking…
jcenter: downloading https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway-mvc/1.0.2.RELEASE/spring-cloud-gateway-mvc-1.0.2.RELEASE.pom.md5
to /var/folders/k3/zv8hzdm17vv69j485fv3cf9r0000gn/T/ivytmp4971685200760227119md5
md5 OK for https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway-mvc/1.0.2.RELEASE/spring-cloud-gateway-mvc-1.0.2.RELEASE.pom
[SUCCESSFUL ] org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE!spring-cloud-gateway-mvc.pom(pom.original) (1260ms)
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-gateway;1.0.2.RELEASE {}
no ivy file in cache for org.springframework.cloud#spring-cloud-gateway;1.0.2.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway/ivy-1.0.2.RELEASE.xml
no ivy file in cache for org.springframework.cloud#spring-cloud-gateway;1.0.2.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway/ivy-1.0.2.RELEASE.xml
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway/ivy-1.0.2.RELEASE.xml
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway/ivy-1.0.2.RELEASE.xml
cachedGrapes: resource not reachable for org.springframework.cloud#spring-cloud-gateway;1.0.2.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway/ivy-1.0.2.RELEASE.xml
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway/jars/spring-cloud-gateway-1.0.2.RELEASE.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway/jars/spring-cloud-gateway-1.0.2.RELEASE.jar
cachedGrapes: resource not reachable for org.springframework.cloud#spring-cloud-gateway;1.0.2.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway/jars/spring-cloud-gateway-1.0.2.RELEASE.jar
cachedGrapes: no ivy file nor artifact found for org.springframework.cloud#spring-cloud-gateway;1.0.2.RELEASE
don’t use cache for org.springframework.cloud#spring-cloud-gateway;1.0.2.RELEASE: checkModified=true
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/cloud/spring-cloud-gateway/1.0.2.RELEASE/spring-cloud-gateway-1.0.2.RELEASE.pom
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/cloud/spring-cloud-gateway/1.0.2.RELEASE/spring-cloud-gateway-1.0.2.RELEASE.pom
localm2: resource not reachable for org/springframework/cloud#spring-cloud-gateway;1.0.2.RELEASE: res=file:/Users/ryanjbaxter/.m2/repository/org/springframework/cloud/spring-cloud-gateway/1.0.2.RELEASE/spring-cloud-gateway-1.0.2.RELEASE.pom
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/cloud/spring-cloud-gateway/1.0.2.RELEASE/spring-cloud-gateway-1.0.2.RELEASE.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/cloud/spring-cloud-gateway/1.0.2.RELEASE/spring-cloud-gateway-1.0.2.RELEASE.jar
localm2: resource not reachable for org/springframework/cloud#spring-cloud-gateway;1.0.2.RELEASE: res=file:/Users/ryanjbaxter/.m2/repository/org/springframework/cloud/spring-cloud-gateway/1.0.2.RELEASE/spring-cloud-gateway-1.0.2.RELEASE.jar
localm2: no ivy file nor artifact found for org.springframework.cloud#spring-cloud-gateway;1.0.2.RELEASE
no ivy file in cache for org.springframework.cloud#spring-cloud-gateway;1.0.2.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway/ivy-1.0.2.RELEASE.xml
trying https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway/1.0.2.RELEASE/spring-cloud-gateway-1.0.2.RELEASE.pom
tried https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway/1.0.2.RELEASE/spring-cloud-gateway-1.0.2.RELEASE.pom
jcenter: found md file for org.springframework.cloud#spring-cloud-gateway;1.0.2.RELEASE
⇒ https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway/1.0.2.RELEASE/spring-cloud-gateway-1.0.2.RELEASE.pom (1.0.2.RELEASE)
parser = pom parser
no ivy file in cache for org.springframework.cloud#spring-cloud-gateway;1.0.2.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway/ivy-1.0.2.RELEASE.xml
downloading https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway/1.0.2.RELEASE/spring-cloud-gateway-1.0.2.RELEASE.pom …
jcenter: downloading https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway/1.0.2.RELEASE/spring-cloud-gateway-1.0.2.RELEASE.pom
to /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway/ivy-1.0.2.RELEASE.xml.original.part
HTTP response status: 404 url=https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway/1.0.2.RELEASE/spring-cloud-gateway-1.0.2.RELEASE.pom.sha1
CLIENT ERROR: Not Found url=https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway/1.0.2.RELEASE/spring-cloud-gateway-1.0.2.RELEASE.pom.sha1
md5 file found for https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway/1.0.2.RELEASE/spring-cloud-gateway-1.0.2.RELEASE.pom: checking…
jcenter: downloading https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway/1.0.2.RELEASE/spring-cloud-gateway-1.0.2.RELEASE.pom.md5
to /var/folders/k3/zv8hzdm17vv69j485fv3cf9r0000gn/T/ivytmp5820449278483902267md5
md5 OK for https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway/1.0.2.RELEASE/spring-cloud-gateway-1.0.2.RELEASE.pom
[SUCCESSFUL ] org.springframework.cloud#spring-cloud-gateway;1.0.2.RELEASE!spring-cloud-gateway.pom(pom.original) (1205ms)
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-build;1.3.10.RELEASE {}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-build/ivy-1.3.10.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.cloud#spring-cloud-build;1.3.10.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-build/ivy-1.3.10.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-build;1.3.10.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-gateway-dependencies;1.0.2.RELEASE {}
no ivy file in cache for org.springframework.cloud#spring-cloud-gateway-dependencies;1.0.2.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway-dependencies/ivy-1.0.2.RELEASE.xml
no ivy file in cache for org.springframework.cloud#spring-cloud-gateway-dependencies;1.0.2.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway-dependencies/ivy-1.0.2.RELEASE.xml
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway-dependencies/ivy-1.0.2.RELEASE.xml
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway-dependencies/ivy-1.0.2.RELEASE.xml
cachedGrapes: resource not reachable for org.springframework.cloud#spring-cloud-gateway-dependencies;1.0.2.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway-dependencies/ivy-1.0.2.RELEASE.xml
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway-dependencies/jars/spring-cloud-gateway-dependencies-1.0.2.RELEASE.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway-dependencies/jars/spring-cloud-gateway-dependencies-1.0.2.RELEASE.jar
cachedGrapes: resource not reachable for org.springframework.cloud#spring-cloud-gateway-dependencies;1.0.2.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway-dependencies/jars/spring-cloud-gateway-dependencies-1.0.2.RELEASE.jar
cachedGrapes: no ivy file nor artifact found for org.springframework.cloud#spring-cloud-gateway-dependencies;1.0.2.RELEASE
don’t use cache for org.springframework.cloud#spring-cloud-gateway-dependencies;1.0.2.RELEASE: checkModified=true
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/cloud/spring-cloud-gateway-dependencies/1.0.2.RELEASE/spring-cloud-gateway-dependencies-1.0.2.RELEASE.pom
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/cloud/spring-cloud-gateway-dependencies/1.0.2.RELEASE/spring-cloud-gateway-dependencies-1.0.2.RELEASE.pom
localm2: resource not reachable for org/springframework/cloud#spring-cloud-gateway-dependencies;1.0.2.RELEASE: res=file:/Users/ryanjbaxter/.m2/repository/org/springframework/cloud/spring-cloud-gateway-dependencies/1.0.2.RELEASE/spring-cloud-gateway-dependencies-1.0.2.RELEASE.pom
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/cloud/spring-cloud-gateway-dependencies/1.0.2.RELEASE/spring-cloud-gateway-dependencies-1.0.2.RELEASE.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/cloud/spring-cloud-gateway-dependencies/1.0.2.RELEASE/spring-cloud-gateway-dependencies-1.0.2.RELEASE.jar
localm2: resource not reachable for org/springframework/cloud#spring-cloud-gateway-dependencies;1.0.2.RELEASE: res=file:/Users/ryanjbaxter/.m2/repository/org/springframework/cloud/spring-cloud-gateway-dependencies/1.0.2.RELEASE/spring-cloud-gateway-dependencies-1.0.2.RELEASE.jar
localm2: no ivy file nor artifact found for org.springframework.cloud#spring-cloud-gateway-dependencies;1.0.2.RELEASE
no ivy file in cache for org.springframework.cloud#spring-cloud-gateway-dependencies;1.0.2.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway-dependencies/ivy-1.0.2.RELEASE.xml
trying https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway-dependencies/1.0.2.RELEASE/spring-cloud-gateway-dependencies-1.0.2.RELEASE.pom
tried https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway-dependencies/1.0.2.RELEASE/spring-cloud-gateway-dependencies-1.0.2.RELEASE.pom
jcenter: found md file for org.springframework.cloud#spring-cloud-gateway-dependencies;1.0.2.RELEASE
⇒ https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway-dependencies/1.0.2.RELEASE/spring-cloud-gateway-dependencies-1.0.2.RELEASE.pom (1.0.2.RELEASE)
parser = pom parser
no ivy file in cache for org.springframework.cloud#spring-cloud-gateway-dependencies;1.0.2.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway-dependencies/ivy-1.0.2.RELEASE.xml
downloading https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway-dependencies/1.0.2.RELEASE/spring-cloud-gateway-dependencies-1.0.2.RELEASE.pom …
jcenter: downloading https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway-dependencies/1.0.2.RELEASE/spring-cloud-gateway-dependencies-1.0.2.RELEASE.pom
to /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway-dependencies/ivy-1.0.2.RELEASE.xml.original.part
sha1 file found for https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway-dependencies/1.0.2.RELEASE/spring-cloud-gateway-dependencies-1.0.2.RELEASE.pom: checking…
jcenter: downloading https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway-dependencies/1.0.2.RELEASE/spring-cloud-gateway-dependencies-1.0.2.RELEASE.pom.sha1
to /var/folders/k3/zv8hzdm17vv69j485fv3cf9r0000gn/T/ivytmp3986728778957238732sha1
sha1 OK for https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway-dependencies/1.0.2.RELEASE/spring-cloud-gateway-dependencies-1.0.2.RELEASE.pom
[SUCCESSFUL ] org.springframework.cloud#spring-cloud-gateway-dependencies;1.0.2.RELEASE!spring-cloud-gateway-dependencies.pom(pom.original) (457ms)
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-dependencies-parent;1.3.10.RELEASE {}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-dependencies-parent/ivy-1.3.10.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.cloud#spring-cloud-dependencies-parent;1.3.10.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-dependencies-parent/ivy-1.3.10.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-dependencies-parent;1.3.10.RELEASE
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway-dependencies/jars/spring-cloud-gateway-dependencies-1.0.2.RELEASE.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway-dependencies/jars/spring-cloud-gateway-dependencies-1.0.2.RELEASE.jar
cachedGrapes: resource not reachable for org.springframework.cloud#spring-cloud-gateway-dependencies;1.0.2.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway-dependencies/jars/spring-cloud-gateway-dependencies-1.0.2.RELEASE.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/cloud/spring-cloud-gateway-dependencies/1.0.2.RELEASE/spring-cloud-gateway-dependencies-1.0.2.RELEASE.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/cloud/spring-cloud-gateway-dependencies/1.0.2.RELEASE/spring-cloud-gateway-dependencies-1.0.2.RELEASE.jar
localm2: resource not reachable for org/springframework/cloud#spring-cloud-gateway-dependencies;1.0.2.RELEASE: res=file:/Users/ryanjbaxter/.m2/repository/org/springframework/cloud/spring-cloud-gateway-dependencies/1.0.2.RELEASE/spring-cloud-gateway-dependencies-1.0.2.RELEASE.jar
trying https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway-dependencies/1.0.2.RELEASE/spring-cloud-gateway-dependencies-1.0.2.RELEASE.jar
tried https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway-dependencies/1.0.2.RELEASE/spring-cloud-gateway-dependencies-1.0.2.RELEASE.jar
HTTP response status: 404 url=https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway-dependencies/1.0.2.RELEASE/spring-cloud-gateway-dependencies-1.0.2.RELEASE.jar
CLIENT ERROR: null url=https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway-dependencies/1.0.2.RELEASE/spring-cloud-gateway-dependencies-1.0.2.RELEASE.jar
jcenter: resource not reachable for org/springframework/cloud#spring-cloud-gateway-dependencies;1.0.2.RELEASE: res=https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway-dependencies/1.0.2.RELEASE/spring-cloud-gateway-dependencies-1.0.2.RELEASE.jar
trying https://repo1.maven.org/maven2/org/springframework/cloud/spring-cloud-gateway-dependencies/1.0.2.RELEASE/spring-cloud-gateway-dependencies-1.0.2.RELEASE.jar
tried https://repo1.maven.org/maven2/org/springframework/cloud/spring-cloud-gateway-dependencies/1.0.2.RELEASE/spring-cloud-gateway-dependencies-1.0.2.RELEASE.jar
HTTP response status: 404 url=https://repo1.maven.org/maven2/org/springframework/cloud/spring-cloud-gateway-dependencies/1.0.2.RELEASE/spring-cloud-gateway-dependencies-1.0.2.RELEASE.jar
CLIENT ERROR: Not Found url=https://repo1.maven.org/maven2/org/springframework/cloud/spring-cloud-gateway-dependencies/1.0.2.RELEASE/spring-cloud-gateway-dependencies-1.0.2.RELEASE.jar
ibiblio: resource not reachable for org/springframework/cloud#spring-cloud-gateway-dependencies;1.0.2.RELEASE: res=https://repo1.maven.org/maven2/org/springframework/cloud/spring-cloud-gateway-dependencies/1.0.2.RELEASE/spring-cloud-gateway-dependencies-1.0.2.RELEASE.jar
milestone: no namespace defined: using system
trying http://repo.spring.io/milestone/org/springframework/cloud/spring-cloud-gateway-dependencies/1.0.2.RELEASE/spring-cloud-gateway-dependencies-1.0.2.RELEASE.jar
tried http://repo.spring.io/milestone/org/springframework/cloud/spring-cloud-gateway-dependencies/1.0.2.RELEASE/spring-cloud-gateway-dependencies-1.0.2.RELEASE.jar
HTTP response status: 404 url=http://repo.spring.io/milestone/org/springframework/cloud/spring-cloud-gateway-dependencies/1.0.2.RELEASE/spring-cloud-gateway-dependencies-1.0.2.RELEASE.jar
CLIENT ERROR: Not Found url=http://repo.spring.io/milestone/org/springframework/cloud/spring-cloud-gateway-dependencies/1.0.2.RELEASE/spring-cloud-gateway-dependencies-1.0.2.RELEASE.jar
milestone: resource not reachable for org/springframework/cloud#spring-cloud-gateway-dependencies;1.0.2.RELEASE: res=http://repo.spring.io/milestone/org/springframework/cloud/spring-cloud-gateway-dependencies/1.0.2.RELEASE/spring-cloud-gateway-dependencies-1.0.2.RELEASE.jar
milestone: no namespace defined: using system
trying http://repo.spring.io/milestone/org/springframework/cloud/spring-cloud-gateway-dependencies/1.0.2.RELEASE/spring-cloud-gateway-dependencies-1.0.2.RELEASE.jar
tried http://repo.spring.io/milestone/org/springframework/cloud/spring-cloud-gateway-dependencies/1.0.2.RELEASE/spring-cloud-gateway-dependencies-1.0.2.RELEASE.jar
HTTP response status: 404 url=http://repo.spring.io/milestone/org/springframework/cloud/spring-cloud-gateway-dependencies/1.0.2.RELEASE/spring-cloud-gateway-dependencies-1.0.2.RELEASE.jar
CLIENT ERROR: Not Found url=http://repo.spring.io/milestone/org/springframework/cloud/spring-cloud-gateway-dependencies/1.0.2.RELEASE/spring-cloud-gateway-dependencies-1.0.2.RELEASE.jar
milestone: resource not reachable for org/springframework/cloud#spring-cloud-gateway-dependencies;1.0.2.RELEASE: res=http://repo.spring.io/milestone/org/springframework/cloud/spring-cloud-gateway-dependencies/1.0.2.RELEASE/spring-cloud-gateway-dependencies-1.0.2.RELEASE.jar
default-cache: parsed downloaded md file for org.springframework.cloud#spring-cloud-gateway-dependencies;1.0.2.RELEASE; parsed=org.springframework.cloud#spring-cloud-gateway-dependencies;1.0.2.RELEASE
checking org.springframework.cloud#spring-cloud-gateway-dependencies;1.0.2.RELEASE from jcenter against [none]
module revision kept as first found: org.springframework.cloud#spring-cloud-gateway-dependencies;1.0.2.RELEASE from jcenter
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway/jars/spring-cloud-gateway-1.0.2.RELEASE.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway/jars/spring-cloud-gateway-1.0.2.RELEASE.jar
cachedGrapes: resource not reachable for org.springframework.cloud#spring-cloud-gateway;1.0.2.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway/jars/spring-cloud-gateway-1.0.2.RELEASE.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/cloud/spring-cloud-gateway/1.0.2.RELEASE/spring-cloud-gateway-1.0.2.RELEASE.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/cloud/spring-cloud-gateway/1.0.2.RELEASE/spring-cloud-gateway-1.0.2.RELEASE.jar
localm2: resource not reachable for org/springframework/cloud#spring-cloud-gateway;1.0.2.RELEASE: res=file:/Users/ryanjbaxter/.m2/repository/org/springframework/cloud/spring-cloud-gateway/1.0.2.RELEASE/spring-cloud-gateway-1.0.2.RELEASE.jar
trying https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway/1.0.2.RELEASE/spring-cloud-gateway-1.0.2.RELEASE.jar
tried https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway/1.0.2.RELEASE/spring-cloud-gateway-1.0.2.RELEASE.jar
HTTP response status: 404 url=https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway/1.0.2.RELEASE/spring-cloud-gateway-1.0.2.RELEASE.jar
CLIENT ERROR: null url=https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway/1.0.2.RELEASE/spring-cloud-gateway-1.0.2.RELEASE.jar
jcenter: resource not reachable for org/springframework/cloud#spring-cloud-gateway;1.0.2.RELEASE: res=https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway/1.0.2.RELEASE/spring-cloud-gateway-1.0.2.RELEASE.jar
trying https://repo1.maven.org/maven2/org/springframework/cloud/spring-cloud-gateway/1.0.2.RELEASE/spring-cloud-gateway-1.0.2.RELEASE.jar
tried https://repo1.maven.org/maven2/org/springframework/cloud/spring-cloud-gateway/1.0.2.RELEASE/spring-cloud-gateway-1.0.2.RELEASE.jar
HTTP response status: 404 url=https://repo1.maven.org/maven2/org/springframework/cloud/spring-cloud-gateway/1.0.2.RELEASE/spring-cloud-gateway-1.0.2.RELEASE.jar
CLIENT ERROR: Not Found url=https://repo1.maven.org/maven2/org/springframework/cloud/spring-cloud-gateway/1.0.2.RELEASE/spring-cloud-gateway-1.0.2.RELEASE.jar
ibiblio: resource not reachable for org/springframework/cloud#spring-cloud-gateway;1.0.2.RELEASE: res=https://repo1.maven.org/maven2/org/springframework/cloud/spring-cloud-gateway/1.0.2.RELEASE/spring-cloud-gateway-1.0.2.RELEASE.jar
trying http://repo.spring.io/milestone/org/springframework/cloud/spring-cloud-gateway/1.0.2.RELEASE/spring-cloud-gateway-1.0.2.RELEASE.jar
tried http://repo.spring.io/milestone/org/springframework/cloud/spring-cloud-gateway/1.0.2.RELEASE/spring-cloud-gateway-1.0.2.RELEASE.jar
HTTP response status: 404 url=http://repo.spring.io/milestone/org/springframework/cloud/spring-cloud-gateway/1.0.2.RELEASE/spring-cloud-gateway-1.0.2.RELEASE.jar
CLIENT ERROR: Not Found url=http://repo.spring.io/milestone/org/springframework/cloud/spring-cloud-gateway/1.0.2.RELEASE/spring-cloud-gateway-1.0.2.RELEASE.jar
milestone: resource not reachable for org/springframework/cloud#spring-cloud-gateway;1.0.2.RELEASE: res=http://repo.spring.io/milestone/org/springframework/cloud/spring-cloud-gateway/1.0.2.RELEASE/spring-cloud-gateway-1.0.2.RELEASE.jar
trying http://repo.spring.io/milestone/org/springframework/cloud/spring-cloud-gateway/1.0.2.RELEASE/spring-cloud-gateway-1.0.2.RELEASE.jar
tried http://repo.spring.io/milestone/org/springframework/cloud/spring-cloud-gateway/1.0.2.RELEASE/spring-cloud-gateway-1.0.2.RELEASE.jar
HTTP response status: 404 url=http://repo.spring.io/milestone/org/springframework/cloud/spring-cloud-gateway/1.0.2.RELEASE/spring-cloud-gateway-1.0.2.RELEASE.jar
CLIENT ERROR: Not Found url=http://repo.spring.io/milestone/org/springframework/cloud/spring-cloud-gateway/1.0.2.RELEASE/spring-cloud-gateway-1.0.2.RELEASE.jar
milestone: resource not reachable for org/springframework/cloud#spring-cloud-gateway;1.0.2.RELEASE: res=http://repo.spring.io/milestone/org/springframework/cloud/spring-cloud-gateway/1.0.2.RELEASE/spring-cloud-gateway-1.0.2.RELEASE.jar
default-cache: parsed downloaded md file for org.springframework.cloud#spring-cloud-gateway;1.0.2.RELEASE; parsed=org.springframework.cloud#spring-cloud-gateway;1.0.2.RELEASE
checking org.springframework.cloud#spring-cloud-gateway;1.0.2.RELEASE from jcenter against [none]
module revision kept as first found: org.springframework.cloud#spring-cloud-gateway;1.0.2.RELEASE from jcenter
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway-mvc/jars/spring-cloud-gateway-mvc-1.0.2.RELEASE.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway-mvc/jars/spring-cloud-gateway-mvc-1.0.2.RELEASE.jar
cachedGrapes: resource not reachable for org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway-mvc/jars/spring-cloud-gateway-mvc-1.0.2.RELEASE.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/cloud/spring-cloud-gateway-mvc/1.0.2.RELEASE/spring-cloud-gateway-mvc-1.0.2.RELEASE.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/cloud/spring-cloud-gateway-mvc/1.0.2.RELEASE/spring-cloud-gateway-mvc-1.0.2.RELEASE.jar
localm2: resource not reachable for org/springframework/cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE: res=file:/Users/ryanjbaxter/.m2/repository/org/springframework/cloud/spring-cloud-gateway-mvc/1.0.2.RELEASE/spring-cloud-gateway-mvc-1.0.2.RELEASE.jar
trying https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway-mvc/1.0.2.RELEASE/spring-cloud-gateway-mvc-1.0.2.RELEASE.jar
tried https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway-mvc/1.0.2.RELEASE/spring-cloud-gateway-mvc-1.0.2.RELEASE.jar
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway-mvc/sources/spring-cloud-gateway-mvc-1.0.2.RELEASE-sources.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway-mvc/sources/spring-cloud-gateway-mvc-1.0.2.RELEASE-sources.jar
cachedGrapes: resource not reachable for org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway-mvc/sources/spring-cloud-gateway-mvc-1.0.2.RELEASE-sources.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/cloud/spring-cloud-gateway-mvc/1.0.2.RELEASE/spring-cloud-gateway-mvc-1.0.2.RELEASE-sources.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/cloud/spring-cloud-gateway-mvc/1.0.2.RELEASE/spring-cloud-gateway-mvc-1.0.2.RELEASE-sources.jar
localm2: resource not reachable for org/springframework/cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE: res=file:/Users/ryanjbaxter/.m2/repository/org/springframework/cloud/spring-cloud-gateway-mvc/1.0.2.RELEASE/spring-cloud-gateway-mvc-1.0.2.RELEASE-sources.jar
trying https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway-mvc/1.0.2.RELEASE/spring-cloud-gateway-mvc-1.0.2.RELEASE-sources.jar
tried https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway-mvc/1.0.2.RELEASE/spring-cloud-gateway-mvc-1.0.2.RELEASE-sources.jar
source artifact found for org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway-mvc/javadocs/spring-cloud-gateway-mvc-1.0.2.RELEASE-javadoc.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway-mvc/javadocs/spring-cloud-gateway-mvc-1.0.2.RELEASE-javadoc.jar
cachedGrapes: resource not reachable for org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway-mvc/javadocs/spring-cloud-gateway-mvc-1.0.2.RELEASE-javadoc.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/cloud/spring-cloud-gateway-mvc/1.0.2.RELEASE/spring-cloud-gateway-mvc-1.0.2.RELEASE-javadoc.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/cloud/spring-cloud-gateway-mvc/1.0.2.RELEASE/spring-cloud-gateway-mvc-1.0.2.RELEASE-javadoc.jar
localm2: resource not reachable for org/springframework/cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE: res=file:/Users/ryanjbaxter/.m2/repository/org/springframework/cloud/spring-cloud-gateway-mvc/1.0.2.RELEASE/spring-cloud-gateway-mvc-1.0.2.RELEASE-javadoc.jar
trying https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway-mvc/1.0.2.RELEASE/spring-cloud-gateway-mvc-1.0.2.RELEASE-javadoc.jar
tried https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway-mvc/1.0.2.RELEASE/spring-cloud-gateway-mvc-1.0.2.RELEASE-javadoc.jar
javadoc artifact found for org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE
default-cache: parsed downloaded md file for org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE; parsed=org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE
checking org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE from jcenter against [none]
module revision kept as first found: org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE from jcenter
found org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE in jcenter
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
no ivy file in cache for org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-web/ivy-1.5.14.RELEASE.xml
no ivy file in cache for org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-web/ivy-1.5.14.RELEASE.xml
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-web/ivy-1.5.14.RELEASE.xml
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-web/ivy-1.5.14.RELEASE.xml
cachedGrapes: resource not reachable for org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-web/ivy-1.5.14.RELEASE.xml
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-web/jars/spring-boot-starter-web-1.5.14.RELEASE.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-web/jars/spring-boot-starter-web-1.5.14.RELEASE.jar
cachedGrapes: resource not reachable for org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-web/jars/spring-boot-starter-web-1.5.14.RELEASE.jar
cachedGrapes: no ivy file nor artifact found for org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
don’t use cache for org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE: checkModified=true
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE.pom
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE.pom
localm2: found md file for org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
⇒ file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE.pom (1.5.14.RELEASE)
parser = pom parser
no ivy file in cache for org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-web/ivy-1.5.14.RELEASE.xml
downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE.pom …
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE.pom
to /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-web/ivy-1.5.14.RELEASE.xml.original.part
sha1 file found for file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE.pom: checking…
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE.pom.sha1
to /var/folders/k3/zv8hzdm17vv69j485fv3cf9r0000gn/T/ivytmp6925870315969926638sha1
sha1 OK for file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE.pom
[SUCCESSFUL ] org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE!spring-boot-starter-web.pom(pom.original) (4ms)
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-starters;1.5.14.RELEASE {}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starters/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.boot#spring-boot-starters;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starters/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-starters;1.5.14.RELEASE
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-web/jars/spring-boot-starter-web-1.5.14.RELEASE.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-web/jars/spring-boot-starter-web-1.5.14.RELEASE.jar
cachedGrapes: resource not reachable for org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-web/jars/spring-boot-starter-web-1.5.14.RELEASE.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE.jar
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-web/sources/spring-boot-starter-web-1.5.14.RELEASE-sources.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-web/sources/spring-boot-starter-web-1.5.14.RELEASE-sources.jar
cachedGrapes: resource not reachable for org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-web/sources/spring-boot-starter-web-1.5.14.RELEASE-sources.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE-sources.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE-sources.jar
localm2: resource not reachable for org/springframework/boot#spring-boot-starter-web;1.5.14.RELEASE: res=file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE-sources.jar
trying https://jcenter.bintray.com/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE-sources.jar
tried https://jcenter.bintray.com/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE-sources.jar
source artifact found for org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-web/javadocs/spring-boot-starter-web-1.5.14.RELEASE-javadoc.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-web/javadocs/spring-boot-starter-web-1.5.14.RELEASE-javadoc.jar
cachedGrapes: resource not reachable for org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-web/javadocs/spring-boot-starter-web-1.5.14.RELEASE-javadoc.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE-javadoc.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE-javadoc.jar
localm2: resource not reachable for org/springframework/boot#spring-boot-starter-web;1.5.14.RELEASE: res=file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE-javadoc.jar
trying https://jcenter.bintray.com/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE-javadoc.jar
tried https://jcenter.bintray.com/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE-javadoc.jar
HTTP response status: 404 url=https://jcenter.bintray.com/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE-javadoc.jar
CLIENT ERROR: null url=https://jcenter.bintray.com/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE-javadoc.jar
jcenter: resource not reachable for org/springframework/boot#spring-boot-starter-web;1.5.14.RELEASE: res=https://jcenter.bintray.com/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE-javadoc.jar
trying https://repo1.maven.org/maven2/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE-javadoc.jar
tried https://repo1.maven.org/maven2/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE-javadoc.jar
HTTP response status: 404 url=https://repo1.maven.org/maven2/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE-javadoc.jar
CLIENT ERROR: Not Found url=https://repo1.maven.org/maven2/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE-javadoc.jar
ibiblio: resource not reachable for org/springframework/boot#spring-boot-starter-web;1.5.14.RELEASE: res=https://repo1.maven.org/maven2/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE-javadoc.jar
trying http://repo.spring.io/milestone/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE-javadoc.jar
tried http://repo.spring.io/milestone/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE-javadoc.jar
HTTP response status: 404 url=http://repo.spring.io/milestone/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE-javadoc.jar
CLIENT ERROR: Not Found url=http://repo.spring.io/milestone/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE-javadoc.jar
milestone: resource not reachable for org/springframework/boot#spring-boot-starter-web;1.5.14.RELEASE: res=http://repo.spring.io/milestone/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE-javadoc.jar
trying http://repo.spring.io/milestone/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE-javadoc.jar
tried http://repo.spring.io/milestone/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE-javadoc.jar
HTTP response status: 404 url=http://repo.spring.io/milestone/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE-javadoc.jar
CLIENT ERROR: Not Found url=http://repo.spring.io/milestone/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE-javadoc.jar
milestone: resource not reachable for org/springframework/boot#spring-boot-starter-web;1.5.14.RELEASE: res=http://repo.spring.io/milestone/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE-javadoc.jar
no javadoc artifact found for org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
default-cache: parsed downloaded md file for org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE; parsed=org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE is changing, but has not changed: will trust cached artifacts if any
checking org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE from localm2 against [none]
module revision kept as first found: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE from localm2
found org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
no ivy file in cache for org.springframework.boot#spring-boot-starter;1.5.14.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter/ivy-1.5.14.RELEASE.xml
no ivy file in cache for org.springframework.boot#spring-boot-starter;1.5.14.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter/ivy-1.5.14.RELEASE.xml
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter/ivy-1.5.14.RELEASE.xml
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter/ivy-1.5.14.RELEASE.xml
cachedGrapes: resource not reachable for org.springframework.boot#spring-boot-starter;1.5.14.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter/ivy-1.5.14.RELEASE.xml
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter/jars/spring-boot-starter-1.5.14.RELEASE.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter/jars/spring-boot-starter-1.5.14.RELEASE.jar
cachedGrapes: resource not reachable for org.springframework.boot#spring-boot-starter;1.5.14.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter/jars/spring-boot-starter-1.5.14.RELEASE.jar
cachedGrapes: no ivy file nor artifact found for org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
don’t use cache for org.springframework.boot#spring-boot-starter;1.5.14.RELEASE: checkModified=true
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE.pom
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE.pom
localm2: found md file for org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
⇒ file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE.pom (1.5.14.RELEASE)
parser = pom parser
no ivy file in cache for org.springframework.boot#spring-boot-starter;1.5.14.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter/ivy-1.5.14.RELEASE.xml
downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE.pom …
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE.pom
to /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter/ivy-1.5.14.RELEASE.xml.original.part
sha1 file found for file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE.pom: checking…
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE.pom.sha1
to /var/folders/k3/zv8hzdm17vv69j485fv3cf9r0000gn/T/ivytmp4242102730185211489sha1
sha1 OK for file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE.pom
[SUCCESSFUL ] org.springframework.boot#spring-boot-starter;1.5.14.RELEASE!spring-boot-starter.pom(pom.original) (2ms)
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-starters;1.5.14.RELEASE {}
Entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starters/ivy-1.5.14.RELEASE.xml
found ivy file in cache for org.springframework.boot#spring-boot-starters;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starters/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-starters;1.5.14.RELEASE
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter/jars/spring-boot-starter-1.5.14.RELEASE.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter/jars/spring-boot-starter-1.5.14.RELEASE.jar
cachedGrapes: resource not reachable for org.springframework.boot#spring-boot-starter;1.5.14.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter/jars/spring-boot-starter-1.5.14.RELEASE.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE.jar
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter/sources/spring-boot-starter-1.5.14.RELEASE-sources.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter/sources/spring-boot-starter-1.5.14.RELEASE-sources.jar
cachedGrapes: resource not reachable for org.springframework.boot#spring-boot-starter;1.5.14.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter/sources/spring-boot-starter-1.5.14.RELEASE-sources.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE-sources.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE-sources.jar
localm2: resource not reachable for org/springframework/boot#spring-boot-starter;1.5.14.RELEASE: res=file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE-sources.jar
trying https://jcenter.bintray.com/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE-sources.jar
tried https://jcenter.bintray.com/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE-sources.jar
source artifact found for org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter/javadocs/spring-boot-starter-1.5.14.RELEASE-javadoc.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter/javadocs/spring-boot-starter-1.5.14.RELEASE-javadoc.jar
cachedGrapes: resource not reachable for org.springframework.boot#spring-boot-starter;1.5.14.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter/javadocs/spring-boot-starter-1.5.14.RELEASE-javadoc.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE-javadoc.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE-javadoc.jar
localm2: resource not reachable for org/springframework/boot#spring-boot-starter;1.5.14.RELEASE: res=file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE-javadoc.jar
trying https://jcenter.bintray.com/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE-javadoc.jar
tried https://jcenter.bintray.com/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE-javadoc.jar
HTTP response status: 404 url=https://jcenter.bintray.com/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE-javadoc.jar
CLIENT ERROR: null url=https://jcenter.bintray.com/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE-javadoc.jar
jcenter: resource not reachable for org/springframework/boot#spring-boot-starter;1.5.14.RELEASE: res=https://jcenter.bintray.com/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE-javadoc.jar
trying https://repo1.maven.org/maven2/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE-javadoc.jar
tried https://repo1.maven.org/maven2/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE-javadoc.jar
HTTP response status: 404 url=https://repo1.maven.org/maven2/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE-javadoc.jar
CLIENT ERROR: Not Found url=https://repo1.maven.org/maven2/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE-javadoc.jar
ibiblio: resource not reachable for org/springframework/boot#spring-boot-starter;1.5.14.RELEASE: res=https://repo1.maven.org/maven2/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE-javadoc.jar
trying http://repo.spring.io/milestone/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE-javadoc.jar
tried http://repo.spring.io/milestone/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE-javadoc.jar
HTTP response status: 404 url=http://repo.spring.io/milestone/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE-javadoc.jar
CLIENT ERROR: Not Found url=http://repo.spring.io/milestone/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE-javadoc.jar
milestone: resource not reachable for org/springframework/boot#spring-boot-starter;1.5.14.RELEASE: res=http://repo.spring.io/milestone/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE-javadoc.jar
trying http://repo.spring.io/milestone/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE-javadoc.jar
tried http://repo.spring.io/milestone/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE-javadoc.jar
HTTP response status: 404 url=http://repo.spring.io/milestone/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE-javadoc.jar
CLIENT ERROR: Not Found url=http://repo.spring.io/milestone/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE-javadoc.jar
milestone: resource not reachable for org/springframework/boot#spring-boot-starter;1.5.14.RELEASE: res=http://repo.spring.io/milestone/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE-javadoc.jar
no javadoc artifact found for org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
default-cache: parsed downloaded md file for org.springframework.boot#spring-boot-starter;1.5.14.RELEASE; parsed=org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
org.springframework.boot#spring-boot-starter;1.5.14.RELEASE is changing, but has not changed: will trust cached artifacts if any
checking org.springframework.boot#spring-boot-starter;1.5.14.RELEASE from localm2 against [none]
module revision kept as first found: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE from localm2
found org.springframework.boot#spring-boot-starter;1.5.14.RELEASE in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
no ivy file in cache for org.springframework.boot#spring-boot;1.5.14.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot/ivy-1.5.14.RELEASE.xml
no ivy file in cache for org.springframework.boot#spring-boot;1.5.14.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot/ivy-1.5.14.RELEASE.xml
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot/ivy-1.5.14.RELEASE.xml
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot/ivy-1.5.14.RELEASE.xml
cachedGrapes: resource not reachable for org.springframework.boot#spring-boot;1.5.14.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot/ivy-1.5.14.RELEASE.xml
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot/jars/spring-boot-1.5.14.RELEASE.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot/jars/spring-boot-1.5.14.RELEASE.jar
cachedGrapes: resource not reachable for org.springframework.boot#spring-boot;1.5.14.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot/jars/spring-boot-1.5.14.RELEASE.jar
cachedGrapes: no ivy file nor artifact found for org.springframework.boot#spring-boot;1.5.14.RELEASE
don’t use cache for org.springframework.boot#spring-boot;1.5.14.RELEASE: checkModified=true
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot/1.5.14.RELEASE/spring-boot-1.5.14.RELEASE.pom
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot/1.5.14.RELEASE/spring-boot-1.5.14.RELEASE.pom
localm2: found md file for org.springframework.boot#spring-boot;1.5.14.RELEASE
⇒ file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot/1.5.14.RELEASE/spring-boot-1.5.14.RELEASE.pom (1.5.14.RELEASE)
parser = pom parser
no ivy file in cache for org.springframework.boot#spring-boot;1.5.14.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot/ivy-1.5.14.RELEASE.xml
downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot/1.5.14.RELEASE/spring-boot-1.5.14.RELEASE.pom …
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot/1.5.14.RELEASE/spring-boot-1.5.14.RELEASE.pom
to /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot/ivy-1.5.14.RELEASE.xml.original.part
sha1 file found for file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot/1.5.14.RELEASE/spring-boot-1.5.14.RELEASE.pom: checking…
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot/1.5.14.RELEASE/spring-boot-1.5.14.RELEASE.pom.sha1
to /var/folders/k3/zv8hzdm17vv69j485fv3cf9r0000gn/T/ivytmp5170382822187971699sha1
sha1 OK for file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot/1.5.14.RELEASE/spring-boot-1.5.14.RELEASE.pom
[SUCCESSFUL ] org.springframework.boot#spring-boot;1.5.14.RELEASE!spring-boot.pom(pom.original) (4ms)
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-parent;1.5.14.RELEASE {}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-parent/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.boot#spring-boot-parent;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-parent/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-parent;1.5.14.RELEASE
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot/jars/spring-boot-1.5.14.RELEASE.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot/jars/spring-boot-1.5.14.RELEASE.jar
cachedGrapes: resource not reachable for org.springframework.boot#spring-boot;1.5.14.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot/jars/spring-boot-1.5.14.RELEASE.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot/1.5.14.RELEASE/spring-boot-1.5.14.RELEASE.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot/1.5.14.RELEASE/spring-boot-1.5.14.RELEASE.jar
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot/sources/spring-boot-1.5.14.RELEASE-sources.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot/sources/spring-boot-1.5.14.RELEASE-sources.jar
cachedGrapes: resource not reachable for org.springframework.boot#spring-boot;1.5.14.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot/sources/spring-boot-1.5.14.RELEASE-sources.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot/1.5.14.RELEASE/spring-boot-1.5.14.RELEASE-sources.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot/1.5.14.RELEASE/spring-boot-1.5.14.RELEASE-sources.jar
localm2: resource not reachable for org/springframework/boot#spring-boot;1.5.14.RELEASE: res=file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot/1.5.14.RELEASE/spring-boot-1.5.14.RELEASE-sources.jar
trying https://jcenter.bintray.com/org/springframework/boot/spring-boot/1.5.14.RELEASE/spring-boot-1.5.14.RELEASE-sources.jar
tried https://jcenter.bintray.com/org/springframework/boot/spring-boot/1.5.14.RELEASE/spring-boot-1.5.14.RELEASE-sources.jar
source artifact found for org.springframework.boot#spring-boot;1.5.14.RELEASE
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot/javadocs/spring-boot-1.5.14.RELEASE-javadoc.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot/javadocs/spring-boot-1.5.14.RELEASE-javadoc.jar
cachedGrapes: resource not reachable for org.springframework.boot#spring-boot;1.5.14.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot/javadocs/spring-boot-1.5.14.RELEASE-javadoc.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot/1.5.14.RELEASE/spring-boot-1.5.14.RELEASE-javadoc.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot/1.5.14.RELEASE/spring-boot-1.5.14.RELEASE-javadoc.jar
localm2: resource not reachable for org/springframework/boot#spring-boot;1.5.14.RELEASE: res=file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot/1.5.14.RELEASE/spring-boot-1.5.14.RELEASE-javadoc.jar
trying https://jcenter.bintray.com/org/springframework/boot/spring-boot/1.5.14.RELEASE/spring-boot-1.5.14.RELEASE-javadoc.jar
tried https://jcenter.bintray.com/org/springframework/boot/spring-boot/1.5.14.RELEASE/spring-boot-1.5.14.RELEASE-javadoc.jar
javadoc artifact found for org.springframework.boot#spring-boot;1.5.14.RELEASE
default-cache: parsed downloaded md file for org.springframework.boot#spring-boot;1.5.14.RELEASE; parsed=org.springframework.boot#spring-boot;1.5.14.RELEASE
org.springframework.boot#spring-boot;1.5.14.RELEASE is changing, but has not changed: will trust cached artifacts if any
checking org.springframework.boot#spring-boot;1.5.14.RELEASE from localm2 against [none]
module revision kept as first found: org.springframework.boot#spring-boot;1.5.14.RELEASE from localm2
found org.springframework.boot#spring-boot;1.5.14.RELEASE in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework#spring-core;4.3.18.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
no ivy file in cache for org.springframework#spring-core;4.3.18.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-core/ivy-4.3.18.RELEASE.xml
no ivy file in cache for org.springframework#spring-core;4.3.18.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-core/ivy-4.3.18.RELEASE.xml
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-core/ivy-4.3.18.RELEASE.xml
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-core/ivy-4.3.18.RELEASE.xml
cachedGrapes: resource not reachable for org.springframework#spring-core;4.3.18.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-core/ivy-4.3.18.RELEASE.xml
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-core/jars/spring-core-4.3.18.RELEASE.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-core/jars/spring-core-4.3.18.RELEASE.jar
cachedGrapes: resource not reachable for org.springframework#spring-core;4.3.18.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-core/jars/spring-core-4.3.18.RELEASE.jar
cachedGrapes: no ivy file nor artifact found for org.springframework#spring-core;4.3.18.RELEASE
don’t use cache for org.springframework#spring-core;4.3.18.RELEASE: checkModified=true
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-core/4.3.18.RELEASE/spring-core-4.3.18.RELEASE.pom
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-core/4.3.18.RELEASE/spring-core-4.3.18.RELEASE.pom
localm2: found md file for org.springframework#spring-core;4.3.18.RELEASE
⇒ file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-core/4.3.18.RELEASE/spring-core-4.3.18.RELEASE.pom (4.3.18.RELEASE)
parser = pom parser
no ivy file in cache for org.springframework#spring-core;4.3.18.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-core/ivy-4.3.18.RELEASE.xml
downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-core/4.3.18.RELEASE/spring-core-4.3.18.RELEASE.pom …
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-core/4.3.18.RELEASE/spring-core-4.3.18.RELEASE.pom
to /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-core/ivy-4.3.18.RELEASE.xml.original.part
sha1 file found for file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-core/4.3.18.RELEASE/spring-core-4.3.18.RELEASE.pom: checking…
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-core/4.3.18.RELEASE/spring-core-4.3.18.RELEASE.pom.sha1
to /var/folders/k3/zv8hzdm17vv69j485fv3cf9r0000gn/T/ivytmp5109771449772953984sha1
sha1 OK for file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-core/4.3.18.RELEASE/spring-core-4.3.18.RELEASE.pom
[SUCCESSFUL ] org.springframework#spring-core;4.3.18.RELEASE!spring-core.pom(pom.original) (3ms)
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-core/jars/spring-core-4.3.18.RELEASE.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-core/jars/spring-core-4.3.18.RELEASE.jar
cachedGrapes: resource not reachable for org.springframework#spring-core;4.3.18.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-core/jars/spring-core-4.3.18.RELEASE.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-core/4.3.18.RELEASE/spring-core-4.3.18.RELEASE.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-core/4.3.18.RELEASE/spring-core-4.3.18.RELEASE.jar
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-core/sources/spring-core-4.3.18.RELEASE-sources.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-core/sources/spring-core-4.3.18.RELEASE-sources.jar
cachedGrapes: resource not reachable for org.springframework#spring-core;4.3.18.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-core/sources/spring-core-4.3.18.RELEASE-sources.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-core/4.3.18.RELEASE/spring-core-4.3.18.RELEASE-sources.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-core/4.3.18.RELEASE/spring-core-4.3.18.RELEASE-sources.jar
localm2: resource not reachable for org/springframework#spring-core;4.3.18.RELEASE: res=file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-core/4.3.18.RELEASE/spring-core-4.3.18.RELEASE-sources.jar
trying https://jcenter.bintray.com/org/springframework/spring-core/4.3.18.RELEASE/spring-core-4.3.18.RELEASE-sources.jar
tried https://jcenter.bintray.com/org/springframework/spring-core/4.3.18.RELEASE/spring-core-4.3.18.RELEASE-sources.jar
source artifact found for org.springframework#spring-core;4.3.18.RELEASE
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-core/javadocs/spring-core-4.3.18.RELEASE-javadoc.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-core/javadocs/spring-core-4.3.18.RELEASE-javadoc.jar
cachedGrapes: resource not reachable for org.springframework#spring-core;4.3.18.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-core/javadocs/spring-core-4.3.18.RELEASE-javadoc.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-core/4.3.18.RELEASE/spring-core-4.3.18.RELEASE-javadoc.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-core/4.3.18.RELEASE/spring-core-4.3.18.RELEASE-javadoc.jar
localm2: resource not reachable for org/springframework#spring-core;4.3.18.RELEASE: res=file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-core/4.3.18.RELEASE/spring-core-4.3.18.RELEASE-javadoc.jar
trying https://jcenter.bintray.com/org/springframework/spring-core/4.3.18.RELEASE/spring-core-4.3.18.RELEASE-javadoc.jar
tried https://jcenter.bintray.com/org/springframework/spring-core/4.3.18.RELEASE/spring-core-4.3.18.RELEASE-javadoc.jar
javadoc artifact found for org.springframework#spring-core;4.3.18.RELEASE
default-cache: parsed downloaded md file for org.springframework#spring-core;4.3.18.RELEASE; parsed=org.springframework#spring-core;4.3.18.RELEASE
org.springframework#spring-core;4.3.18.RELEASE is changing, but has not changed: will trust cached artifacts if any
checking org.springframework#spring-core;4.3.18.RELEASE from localm2 against [none]
module revision kept as first found: org.springframework#spring-core;4.3.18.RELEASE from localm2
found org.springframework#spring-core;4.3.18.RELEASE in localm2
dependency descriptor has been mediated: dependency: net.sf.jopt-simple#jopt-simple;5.0.3 {optional=[compile(), master()]} ⇒ dependency: net.sf.jopt-simple#jopt-simple;4.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
== resolving dependencies org.springframework.boot#spring-boot;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
excluding dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: net.sf.jopt-simple#jopt-simple;5.0.3 {optional=[compile(), master()]} ⇒ dependency: net.sf.jopt-simple#jopt-simple;4.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
== resolving dependencies org.springframework.boot#spring-boot;1.5.14.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework#spring-context;4.3.18.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
no ivy file in cache for org.springframework#spring-context;4.3.18.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-context/ivy-4.3.18.RELEASE.xml
no ivy file in cache for org.springframework#spring-context;4.3.18.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-context/ivy-4.3.18.RELEASE.xml
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-context/ivy-4.3.18.RELEASE.xml
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-context/ivy-4.3.18.RELEASE.xml
cachedGrapes: resource not reachable for org.springframework#spring-context;4.3.18.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-context/ivy-4.3.18.RELEASE.xml
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-context/jars/spring-context-4.3.18.RELEASE.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-context/jars/spring-context-4.3.18.RELEASE.jar
cachedGrapes: resource not reachable for org.springframework#spring-context;4.3.18.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-context/jars/spring-context-4.3.18.RELEASE.jar
cachedGrapes: no ivy file nor artifact found for org.springframework#spring-context;4.3.18.RELEASE
don’t use cache for org.springframework#spring-context;4.3.18.RELEASE: checkModified=true
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-context/4.3.18.RELEASE/spring-context-4.3.18.RELEASE.pom
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-context/4.3.18.RELEASE/spring-context-4.3.18.RELEASE.pom
localm2: found md file for org.springframework#spring-context;4.3.18.RELEASE
⇒ file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-context/4.3.18.RELEASE/spring-context-4.3.18.RELEASE.pom (4.3.18.RELEASE)
parser = pom parser
no ivy file in cache for org.springframework#spring-context;4.3.18.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-context/ivy-4.3.18.RELEASE.xml
downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-context/4.3.18.RELEASE/spring-context-4.3.18.RELEASE.pom …
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-context/4.3.18.RELEASE/spring-context-4.3.18.RELEASE.pom
to /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-context/ivy-4.3.18.RELEASE.xml.original.part
sha1 file found for file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-context/4.3.18.RELEASE/spring-context-4.3.18.RELEASE.pom: checking…
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-context/4.3.18.RELEASE/spring-context-4.3.18.RELEASE.pom.sha1
to /var/folders/k3/zv8hzdm17vv69j485fv3cf9r0000gn/T/ivytmp4782027579338784172sha1
sha1 OK for file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-context/4.3.18.RELEASE/spring-context-4.3.18.RELEASE.pom
[SUCCESSFUL ] org.springframework#spring-context;4.3.18.RELEASE!spring-context.pom(pom.original) (3ms)
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-context/jars/spring-context-4.3.18.RELEASE.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-context/jars/spring-context-4.3.18.RELEASE.jar
cachedGrapes: resource not reachable for org.springframework#spring-context;4.3.18.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-context/jars/spring-context-4.3.18.RELEASE.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-context/4.3.18.RELEASE/spring-context-4.3.18.RELEASE.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-context/4.3.18.RELEASE/spring-context-4.3.18.RELEASE.jar
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-context/sources/spring-context-4.3.18.RELEASE-sources.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-context/sources/spring-context-4.3.18.RELEASE-sources.jar
cachedGrapes: resource not reachable for org.springframework#spring-context;4.3.18.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-context/sources/spring-context-4.3.18.RELEASE-sources.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-context/4.3.18.RELEASE/spring-context-4.3.18.RELEASE-sources.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-context/4.3.18.RELEASE/spring-context-4.3.18.RELEASE-sources.jar
localm2: resource not reachable for org/springframework#spring-context;4.3.18.RELEASE: res=file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-context/4.3.18.RELEASE/spring-context-4.3.18.RELEASE-sources.jar
trying https://jcenter.bintray.com/org/springframework/spring-context/4.3.18.RELEASE/spring-context-4.3.18.RELEASE-sources.jar
tried https://jcenter.bintray.com/org/springframework/spring-context/4.3.18.RELEASE/spring-context-4.3.18.RELEASE-sources.jar
source artifact found for org.springframework#spring-context;4.3.18.RELEASE
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-context/javadocs/spring-context-4.3.18.RELEASE-javadoc.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-context/javadocs/spring-context-4.3.18.RELEASE-javadoc.jar
cachedGrapes: resource not reachable for org.springframework#spring-context;4.3.18.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-context/javadocs/spring-context-4.3.18.RELEASE-javadoc.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-context/4.3.18.RELEASE/spring-context-4.3.18.RELEASE-javadoc.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-context/4.3.18.RELEASE/spring-context-4.3.18.RELEASE-javadoc.jar
localm2: resource not reachable for org/springframework#spring-context;4.3.18.RELEASE: res=file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-context/4.3.18.RELEASE/spring-context-4.3.18.RELEASE-javadoc.jar
trying https://jcenter.bintray.com/org/springframework/spring-context/4.3.18.RELEASE/spring-context-4.3.18.RELEASE-javadoc.jar
tried https://jcenter.bintray.com/org/springframework/spring-context/4.3.18.RELEASE/spring-context-4.3.18.RELEASE-javadoc.jar
javadoc artifact found for org.springframework#spring-context;4.3.18.RELEASE
default-cache: parsed downloaded md file for org.springframework#spring-context;4.3.18.RELEASE; parsed=org.springframework#spring-context;4.3.18.RELEASE
org.springframework#spring-context;4.3.18.RELEASE is changing, but has not changed: will trust cached artifacts if any
checking org.springframework#spring-context;4.3.18.RELEASE from localm2 against [none]
module revision kept as first found: org.springframework#spring-context;4.3.18.RELEASE from localm2
found org.springframework#spring-context;4.3.18.RELEASE in localm2
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
== resolving dependencies org.springframework.boot#spring-boot;1.5.14.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework#spring-aop;4.3.18.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
no ivy file in cache for org.springframework#spring-aop;4.3.18.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-aop/ivy-4.3.18.RELEASE.xml
no ivy file in cache for org.springframework#spring-aop;4.3.18.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-aop/ivy-4.3.18.RELEASE.xml
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-aop/ivy-4.3.18.RELEASE.xml
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-aop/ivy-4.3.18.RELEASE.xml
cachedGrapes: resource not reachable for org.springframework#spring-aop;4.3.18.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-aop/ivy-4.3.18.RELEASE.xml
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-aop/jars/spring-aop-4.3.18.RELEASE.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-aop/jars/spring-aop-4.3.18.RELEASE.jar
cachedGrapes: resource not reachable for org.springframework#spring-aop;4.3.18.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-aop/jars/spring-aop-4.3.18.RELEASE.jar
cachedGrapes: no ivy file nor artifact found for org.springframework#spring-aop;4.3.18.RELEASE
don’t use cache for org.springframework#spring-aop;4.3.18.RELEASE: checkModified=true
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-aop/4.3.18.RELEASE/spring-aop-4.3.18.RELEASE.pom
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-aop/4.3.18.RELEASE/spring-aop-4.3.18.RELEASE.pom
localm2: found md file for org.springframework#spring-aop;4.3.18.RELEASE
⇒ file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-aop/4.3.18.RELEASE/spring-aop-4.3.18.RELEASE.pom (4.3.18.RELEASE)
parser = pom parser
no ivy file in cache for org.springframework#spring-aop;4.3.18.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-aop/ivy-4.3.18.RELEASE.xml
downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-aop/4.3.18.RELEASE/spring-aop-4.3.18.RELEASE.pom …
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-aop/4.3.18.RELEASE/spring-aop-4.3.18.RELEASE.pom
to /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-aop/ivy-4.3.18.RELEASE.xml.original.part
sha1 file found for file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-aop/4.3.18.RELEASE/spring-aop-4.3.18.RELEASE.pom: checking…
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-aop/4.3.18.RELEASE/spring-aop-4.3.18.RELEASE.pom.sha1
to /var/folders/k3/zv8hzdm17vv69j485fv3cf9r0000gn/T/ivytmp4151170400584087516sha1
sha1 OK for file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-aop/4.3.18.RELEASE/spring-aop-4.3.18.RELEASE.pom
[SUCCESSFUL ] org.springframework#spring-aop;4.3.18.RELEASE!spring-aop.pom(pom.original) (4ms)
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-aop/jars/spring-aop-4.3.18.RELEASE.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-aop/jars/spring-aop-4.3.18.RELEASE.jar
cachedGrapes: resource not reachable for org.springframework#spring-aop;4.3.18.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-aop/jars/spring-aop-4.3.18.RELEASE.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-aop/4.3.18.RELEASE/spring-aop-4.3.18.RELEASE.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-aop/4.3.18.RELEASE/spring-aop-4.3.18.RELEASE.jar
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-aop/sources/spring-aop-4.3.18.RELEASE-sources.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-aop/sources/spring-aop-4.3.18.RELEASE-sources.jar
cachedGrapes: resource not reachable for org.springframework#spring-aop;4.3.18.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-aop/sources/spring-aop-4.3.18.RELEASE-sources.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-aop/4.3.18.RELEASE/spring-aop-4.3.18.RELEASE-sources.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-aop/4.3.18.RELEASE/spring-aop-4.3.18.RELEASE-sources.jar
localm2: resource not reachable for org/springframework#spring-aop;4.3.18.RELEASE: res=file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-aop/4.3.18.RELEASE/spring-aop-4.3.18.RELEASE-sources.jar
trying https://jcenter.bintray.com/org/springframework/spring-aop/4.3.18.RELEASE/spring-aop-4.3.18.RELEASE-sources.jar
tried https://jcenter.bintray.com/org/springframework/spring-aop/4.3.18.RELEASE/spring-aop-4.3.18.RELEASE-sources.jar
source artifact found for org.springframework#spring-aop;4.3.18.RELEASE
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-aop/javadocs/spring-aop-4.3.18.RELEASE-javadoc.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-aop/javadocs/spring-aop-4.3.18.RELEASE-javadoc.jar
cachedGrapes: resource not reachable for org.springframework#spring-aop;4.3.18.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-aop/javadocs/spring-aop-4.3.18.RELEASE-javadoc.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-aop/4.3.18.RELEASE/spring-aop-4.3.18.RELEASE-javadoc.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-aop/4.3.18.RELEASE/spring-aop-4.3.18.RELEASE-javadoc.jar
localm2: resource not reachable for org/springframework#spring-aop;4.3.18.RELEASE: res=file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-aop/4.3.18.RELEASE/spring-aop-4.3.18.RELEASE-javadoc.jar
trying https://jcenter.bintray.com/org/springframework/spring-aop/4.3.18.RELEASE/spring-aop-4.3.18.RELEASE-javadoc.jar
tried https://jcenter.bintray.com/org/springframework/spring-aop/4.3.18.RELEASE/spring-aop-4.3.18.RELEASE-javadoc.jar
javadoc artifact found for org.springframework#spring-aop;4.3.18.RELEASE
default-cache: parsed downloaded md file for org.springframework#spring-aop;4.3.18.RELEASE; parsed=org.springframework#spring-aop;4.3.18.RELEASE
org.springframework#spring-aop;4.3.18.RELEASE is changing, but has not changed: will trust cached artifacts if any
checking org.springframework#spring-aop;4.3.18.RELEASE from localm2 against [none]
module revision kept as first found: org.springframework#spring-aop;4.3.18.RELEASE from localm2
found org.springframework#spring-aop;4.3.18.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.apache.commons#commons-pool2;2.4.2 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-pool2;2.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.apache.commons#commons-pool2;2.4.2 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-pool2;2.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
== resolving dependencies org.springframework#spring-aop;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.apache.commons#commons-pool2;2.4.2 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-pool2;2.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-pool2;2.4.2 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-pool2;2.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-pool2;2.4.2 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-pool2;2.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-pool2;2.4.2 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-pool2;2.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework#spring-beans;4.3.18.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
no ivy file in cache for org.springframework#spring-beans;4.3.18.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-beans/ivy-4.3.18.RELEASE.xml
no ivy file in cache for org.springframework#spring-beans;4.3.18.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-beans/ivy-4.3.18.RELEASE.xml
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-beans/ivy-4.3.18.RELEASE.xml
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-beans/ivy-4.3.18.RELEASE.xml
cachedGrapes: resource not reachable for org.springframework#spring-beans;4.3.18.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-beans/ivy-4.3.18.RELEASE.xml
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-beans/jars/spring-beans-4.3.18.RELEASE.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-beans/jars/spring-beans-4.3.18.RELEASE.jar
cachedGrapes: resource not reachable for org.springframework#spring-beans;4.3.18.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-beans/jars/spring-beans-4.3.18.RELEASE.jar
cachedGrapes: no ivy file nor artifact found for org.springframework#spring-beans;4.3.18.RELEASE
don’t use cache for org.springframework#spring-beans;4.3.18.RELEASE: checkModified=true
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-beans/4.3.18.RELEASE/spring-beans-4.3.18.RELEASE.pom
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-beans/4.3.18.RELEASE/spring-beans-4.3.18.RELEASE.pom
localm2: found md file for org.springframework#spring-beans;4.3.18.RELEASE
⇒ file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-beans/4.3.18.RELEASE/spring-beans-4.3.18.RELEASE.pom (4.3.18.RELEASE)
parser = pom parser
no ivy file in cache for org.springframework#spring-beans;4.3.18.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-beans/ivy-4.3.18.RELEASE.xml
downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-beans/4.3.18.RELEASE/spring-beans-4.3.18.RELEASE.pom …
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-beans/4.3.18.RELEASE/spring-beans-4.3.18.RELEASE.pom
to /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-beans/ivy-4.3.18.RELEASE.xml.original.part
sha1 file found for file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-beans/4.3.18.RELEASE/spring-beans-4.3.18.RELEASE.pom: checking…
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-beans/4.3.18.RELEASE/spring-beans-4.3.18.RELEASE.pom.sha1
to /var/folders/k3/zv8hzdm17vv69j485fv3cf9r0000gn/T/ivytmp8652619489867155072sha1
sha1 OK for file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-beans/4.3.18.RELEASE/spring-beans-4.3.18.RELEASE.pom
[SUCCESSFUL ] org.springframework#spring-beans;4.3.18.RELEASE!spring-beans.pom(pom.original) (2ms)
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-beans/jars/spring-beans-4.3.18.RELEASE.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-beans/jars/spring-beans-4.3.18.RELEASE.jar
cachedGrapes: resource not reachable for org.springframework#spring-beans;4.3.18.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-beans/jars/spring-beans-4.3.18.RELEASE.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-beans/4.3.18.RELEASE/spring-beans-4.3.18.RELEASE.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-beans/4.3.18.RELEASE/spring-beans-4.3.18.RELEASE.jar
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-beans/sources/spring-beans-4.3.18.RELEASE-sources.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-beans/sources/spring-beans-4.3.18.RELEASE-sources.jar
cachedGrapes: resource not reachable for org.springframework#spring-beans;4.3.18.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-beans/sources/spring-beans-4.3.18.RELEASE-sources.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-beans/4.3.18.RELEASE/spring-beans-4.3.18.RELEASE-sources.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-beans/4.3.18.RELEASE/spring-beans-4.3.18.RELEASE-sources.jar
localm2: resource not reachable for org/springframework#spring-beans;4.3.18.RELEASE: res=file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-beans/4.3.18.RELEASE/spring-beans-4.3.18.RELEASE-sources.jar
trying https://jcenter.bintray.com/org/springframework/spring-beans/4.3.18.RELEASE/spring-beans-4.3.18.RELEASE-sources.jar
tried https://jcenter.bintray.com/org/springframework/spring-beans/4.3.18.RELEASE/spring-beans-4.3.18.RELEASE-sources.jar
source artifact found for org.springframework#spring-beans;4.3.18.RELEASE
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-beans/javadocs/spring-beans-4.3.18.RELEASE-javadoc.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-beans/javadocs/spring-beans-4.3.18.RELEASE-javadoc.jar
cachedGrapes: resource not reachable for org.springframework#spring-beans;4.3.18.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-beans/javadocs/spring-beans-4.3.18.RELEASE-javadoc.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-beans/4.3.18.RELEASE/spring-beans-4.3.18.RELEASE-javadoc.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-beans/4.3.18.RELEASE/spring-beans-4.3.18.RELEASE-javadoc.jar
localm2: resource not reachable for org/springframework#spring-beans;4.3.18.RELEASE: res=file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-beans/4.3.18.RELEASE/spring-beans-4.3.18.RELEASE-javadoc.jar
trying https://jcenter.bintray.com/org/springframework/spring-beans/4.3.18.RELEASE/spring-beans-4.3.18.RELEASE-javadoc.jar
tried https://jcenter.bintray.com/org/springframework/spring-beans/4.3.18.RELEASE/spring-beans-4.3.18.RELEASE-javadoc.jar
javadoc artifact found for org.springframework#spring-beans;4.3.18.RELEASE
default-cache: parsed downloaded md file for org.springframework#spring-beans;4.3.18.RELEASE; parsed=org.springframework#spring-beans;4.3.18.RELEASE
org.springframework#spring-beans;4.3.18.RELEASE is changing, but has not changed: will trust cached artifacts if any
checking org.springframework#spring-beans;4.3.18.RELEASE from localm2 against [none]
module revision kept as first found: org.springframework#spring-beans;4.3.18.RELEASE from localm2
found org.springframework#spring-beans;4.3.18.RELEASE in localm2
== resolving dependencies org.springframework#spring-aop;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework#spring-beans;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.apache.commons#commons-pool2;2.4.2 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-pool2;2.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-pool2;2.4.2 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-pool2;2.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-pool2;2.4.2 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-pool2;2.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-pool2;2.4.2 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-pool2;2.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-beans;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-aop;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-aop;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework#spring-expression;4.3.18.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
no ivy file in cache for org.springframework#spring-expression;4.3.18.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-expression/ivy-4.3.18.RELEASE.xml
no ivy file in cache for org.springframework#spring-expression;4.3.18.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-expression/ivy-4.3.18.RELEASE.xml
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-expression/ivy-4.3.18.RELEASE.xml
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-expression/ivy-4.3.18.RELEASE.xml
cachedGrapes: resource not reachable for org.springframework#spring-expression;4.3.18.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-expression/ivy-4.3.18.RELEASE.xml
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-expression/jars/spring-expression-4.3.18.RELEASE.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-expression/jars/spring-expression-4.3.18.RELEASE.jar
cachedGrapes: resource not reachable for org.springframework#spring-expression;4.3.18.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-expression/jars/spring-expression-4.3.18.RELEASE.jar
cachedGrapes: no ivy file nor artifact found for org.springframework#spring-expression;4.3.18.RELEASE
don’t use cache for org.springframework#spring-expression;4.3.18.RELEASE: checkModified=true
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-expression/4.3.18.RELEASE/spring-expression-4.3.18.RELEASE.pom
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-expression/4.3.18.RELEASE/spring-expression-4.3.18.RELEASE.pom
localm2: found md file for org.springframework#spring-expression;4.3.18.RELEASE
⇒ file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-expression/4.3.18.RELEASE/spring-expression-4.3.18.RELEASE.pom (4.3.18.RELEASE)
parser = pom parser
no ivy file in cache for org.springframework#spring-expression;4.3.18.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-expression/ivy-4.3.18.RELEASE.xml
downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-expression/4.3.18.RELEASE/spring-expression-4.3.18.RELEASE.pom …
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-expression/4.3.18.RELEASE/spring-expression-4.3.18.RELEASE.pom
to /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-expression/ivy-4.3.18.RELEASE.xml.original.part
sha1 file found for file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-expression/4.3.18.RELEASE/spring-expression-4.3.18.RELEASE.pom: checking…
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-expression/4.3.18.RELEASE/spring-expression-4.3.18.RELEASE.pom.sha1
to /var/folders/k3/zv8hzdm17vv69j485fv3cf9r0000gn/T/ivytmp2554368166279210605sha1
sha1 OK for file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-expression/4.3.18.RELEASE/spring-expression-4.3.18.RELEASE.pom
[SUCCESSFUL ] org.springframework#spring-expression;4.3.18.RELEASE!spring-expression.pom(pom.original) (2ms)
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-expression/jars/spring-expression-4.3.18.RELEASE.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-expression/jars/spring-expression-4.3.18.RELEASE.jar
cachedGrapes: resource not reachable for org.springframework#spring-expression;4.3.18.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-expression/jars/spring-expression-4.3.18.RELEASE.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-expression/4.3.18.RELEASE/spring-expression-4.3.18.RELEASE.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-expression/4.3.18.RELEASE/spring-expression-4.3.18.RELEASE.jar
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-expression/sources/spring-expression-4.3.18.RELEASE-sources.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-expression/sources/spring-expression-4.3.18.RELEASE-sources.jar
cachedGrapes: resource not reachable for org.springframework#spring-expression;4.3.18.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-expression/sources/spring-expression-4.3.18.RELEASE-sources.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-expression/4.3.18.RELEASE/spring-expression-4.3.18.RELEASE-sources.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-expression/4.3.18.RELEASE/spring-expression-4.3.18.RELEASE-sources.jar
localm2: resource not reachable for org/springframework#spring-expression;4.3.18.RELEASE: res=file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-expression/4.3.18.RELEASE/spring-expression-4.3.18.RELEASE-sources.jar
trying https://jcenter.bintray.com/org/springframework/spring-expression/4.3.18.RELEASE/spring-expression-4.3.18.RELEASE-sources.jar
tried https://jcenter.bintray.com/org/springframework/spring-expression/4.3.18.RELEASE/spring-expression-4.3.18.RELEASE-sources.jar
source artifact found for org.springframework#spring-expression;4.3.18.RELEASE
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-expression/javadocs/spring-expression-4.3.18.RELEASE-javadoc.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-expression/javadocs/spring-expression-4.3.18.RELEASE-javadoc.jar
cachedGrapes: resource not reachable for org.springframework#spring-expression;4.3.18.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-expression/javadocs/spring-expression-4.3.18.RELEASE-javadoc.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-expression/4.3.18.RELEASE/spring-expression-4.3.18.RELEASE-javadoc.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-expression/4.3.18.RELEASE/spring-expression-4.3.18.RELEASE-javadoc.jar
localm2: resource not reachable for org/springframework#spring-expression;4.3.18.RELEASE: res=file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-expression/4.3.18.RELEASE/spring-expression-4.3.18.RELEASE-javadoc.jar
trying https://jcenter.bintray.com/org/springframework/spring-expression/4.3.18.RELEASE/spring-expression-4.3.18.RELEASE-javadoc.jar
tried https://jcenter.bintray.com/org/springframework/spring-expression/4.3.18.RELEASE/spring-expression-4.3.18.RELEASE-javadoc.jar
javadoc artifact found for org.springframework#spring-expression;4.3.18.RELEASE
default-cache: parsed downloaded md file for org.springframework#spring-expression;4.3.18.RELEASE; parsed=org.springframework#spring-expression;4.3.18.RELEASE
org.springframework#spring-expression;4.3.18.RELEASE is changing, but has not changed: will trust cached artifacts if any
checking org.springframework#spring-expression;4.3.18.RELEASE from localm2 against [none]
module revision kept as first found: org.springframework#spring-expression;4.3.18.RELEASE from localm2
found org.springframework#spring-expression;4.3.18.RELEASE in localm2
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework#spring-expression;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-expression;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
no ivy file in cache for org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-autoconfigure/ivy-1.5.14.RELEASE.xml
no ivy file in cache for org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-autoconfigure/ivy-1.5.14.RELEASE.xml
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-autoconfigure/ivy-1.5.14.RELEASE.xml
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-autoconfigure/ivy-1.5.14.RELEASE.xml
cachedGrapes: resource not reachable for org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-autoconfigure/ivy-1.5.14.RELEASE.xml
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-autoconfigure/jars/spring-boot-autoconfigure-1.5.14.RELEASE.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-autoconfigure/jars/spring-boot-autoconfigure-1.5.14.RELEASE.jar
cachedGrapes: resource not reachable for org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-autoconfigure/jars/spring-boot-autoconfigure-1.5.14.RELEASE.jar
cachedGrapes: no ivy file nor artifact found for org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
don’t use cache for org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE: checkModified=true
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/1.5.14.RELEASE/spring-boot-autoconfigure-1.5.14.RELEASE.pom
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/1.5.14.RELEASE/spring-boot-autoconfigure-1.5.14.RELEASE.pom
localm2: found md file for org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
⇒ file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/1.5.14.RELEASE/spring-boot-autoconfigure-1.5.14.RELEASE.pom (1.5.14.RELEASE)
parser = pom parser
no ivy file in cache for org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-autoconfigure/ivy-1.5.14.RELEASE.xml
downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/1.5.14.RELEASE/spring-boot-autoconfigure-1.5.14.RELEASE.pom …
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/1.5.14.RELEASE/spring-boot-autoconfigure-1.5.14.RELEASE.pom
to /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-autoconfigure/ivy-1.5.14.RELEASE.xml.original.part
sha1 file found for file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/1.5.14.RELEASE/spring-boot-autoconfigure-1.5.14.RELEASE.pom: checking…
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/1.5.14.RELEASE/spring-boot-autoconfigure-1.5.14.RELEASE.pom.sha1
to /var/folders/k3/zv8hzdm17vv69j485fv3cf9r0000gn/T/ivytmp1888582246414536904sha1
sha1 OK for file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/1.5.14.RELEASE/spring-boot-autoconfigure-1.5.14.RELEASE.pom
[SUCCESSFUL ] org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE!spring-boot-autoconfigure.pom(pom.original) (4ms)
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-parent;1.5.14.RELEASE {}
Entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-parent/ivy-1.5.14.RELEASE.xml
found ivy file in cache for org.springframework.boot#spring-boot-parent;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-parent/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-parent;1.5.14.RELEASE
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-autoconfigure/jars/spring-boot-autoconfigure-1.5.14.RELEASE.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-autoconfigure/jars/spring-boot-autoconfigure-1.5.14.RELEASE.jar
cachedGrapes: resource not reachable for org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-autoconfigure/jars/spring-boot-autoconfigure-1.5.14.RELEASE.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/1.5.14.RELEASE/spring-boot-autoconfigure-1.5.14.RELEASE.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/1.5.14.RELEASE/spring-boot-autoconfigure-1.5.14.RELEASE.jar
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-autoconfigure/sources/spring-boot-autoconfigure-1.5.14.RELEASE-sources.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-autoconfigure/sources/spring-boot-autoconfigure-1.5.14.RELEASE-sources.jar
cachedGrapes: resource not reachable for org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-autoconfigure/sources/spring-boot-autoconfigure-1.5.14.RELEASE-sources.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/1.5.14.RELEASE/spring-boot-autoconfigure-1.5.14.RELEASE-sources.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/1.5.14.RELEASE/spring-boot-autoconfigure-1.5.14.RELEASE-sources.jar
localm2: resource not reachable for org/springframework/boot#spring-boot-autoconfigure;1.5.14.RELEASE: res=file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/1.5.14.RELEASE/spring-boot-autoconfigure-1.5.14.RELEASE-sources.jar
trying https://jcenter.bintray.com/org/springframework/boot/spring-boot-autoconfigure/1.5.14.RELEASE/spring-boot-autoconfigure-1.5.14.RELEASE-sources.jar
tried https://jcenter.bintray.com/org/springframework/boot/spring-boot-autoconfigure/1.5.14.RELEASE/spring-boot-autoconfigure-1.5.14.RELEASE-sources.jar
source artifact found for org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-autoconfigure/javadocs/spring-boot-autoconfigure-1.5.14.RELEASE-javadoc.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-autoconfigure/javadocs/spring-boot-autoconfigure-1.5.14.RELEASE-javadoc.jar
cachedGrapes: resource not reachable for org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-autoconfigure/javadocs/spring-boot-autoconfigure-1.5.14.RELEASE-javadoc.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/1.5.14.RELEASE/spring-boot-autoconfigure-1.5.14.RELEASE-javadoc.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/1.5.14.RELEASE/spring-boot-autoconfigure-1.5.14.RELEASE-javadoc.jar
localm2: resource not reachable for org/springframework/boot#spring-boot-autoconfigure;1.5.14.RELEASE: res=file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/1.5.14.RELEASE/spring-boot-autoconfigure-1.5.14.RELEASE-javadoc.jar
trying https://jcenter.bintray.com/org/springframework/boot/spring-boot-autoconfigure/1.5.14.RELEASE/spring-boot-autoconfigure-1.5.14.RELEASE-javadoc.jar
tried https://jcenter.bintray.com/org/springframework/boot/spring-boot-autoconfigure/1.5.14.RELEASE/spring-boot-autoconfigure-1.5.14.RELEASE-javadoc.jar
javadoc artifact found for org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
default-cache: parsed downloaded md file for org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE; parsed=org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE is changing, but has not changed: will trust cached artifacts if any
checking org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE from localm2 against [none]
module revision kept as first found: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE from localm2
found org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
no ivy file in cache for org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-logging/ivy-1.5.14.RELEASE.xml
no ivy file in cache for org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-logging/ivy-1.5.14.RELEASE.xml
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-logging/ivy-1.5.14.RELEASE.xml
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-logging/ivy-1.5.14.RELEASE.xml
cachedGrapes: resource not reachable for org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-logging/ivy-1.5.14.RELEASE.xml
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-logging/jars/spring-boot-starter-logging-1.5.14.RELEASE.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-logging/jars/spring-boot-starter-logging-1.5.14.RELEASE.jar
cachedGrapes: resource not reachable for org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-logging/jars/spring-boot-starter-logging-1.5.14.RELEASE.jar
cachedGrapes: no ivy file nor artifact found for org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE
don’t use cache for org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE: checkModified=true
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE.pom
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE.pom
localm2: found md file for org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE
⇒ file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE.pom (1.5.14.RELEASE)
parser = pom parser
no ivy file in cache for org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-logging/ivy-1.5.14.RELEASE.xml
downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE.pom …
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE.pom
to /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-logging/ivy-1.5.14.RELEASE.xml.original.part
sha1 file found for file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE.pom: checking…
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE.pom.sha1
to /var/folders/k3/zv8hzdm17vv69j485fv3cf9r0000gn/T/ivytmp9040122824860412258sha1
sha1 OK for file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE.pom
[SUCCESSFUL ] org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE!spring-boot-starter-logging.pom(pom.original) (3ms)
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-starters;1.5.14.RELEASE {}
Entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starters/ivy-1.5.14.RELEASE.xml
found ivy file in cache for org.springframework.boot#spring-boot-starters;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starters/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-starters;1.5.14.RELEASE
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-logging/jars/spring-boot-starter-logging-1.5.14.RELEASE.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-logging/jars/spring-boot-starter-logging-1.5.14.RELEASE.jar
cachedGrapes: resource not reachable for org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-logging/jars/spring-boot-starter-logging-1.5.14.RELEASE.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE.jar
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-logging/sources/spring-boot-starter-logging-1.5.14.RELEASE-sources.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-logging/sources/spring-boot-starter-logging-1.5.14.RELEASE-sources.jar
cachedGrapes: resource not reachable for org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-logging/sources/spring-boot-starter-logging-1.5.14.RELEASE-sources.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE-sources.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE-sources.jar
localm2: resource not reachable for org/springframework/boot#spring-boot-starter-logging;1.5.14.RELEASE: res=file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE-sources.jar
trying https://jcenter.bintray.com/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE-sources.jar
tried https://jcenter.bintray.com/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE-sources.jar
source artifact found for org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-logging/javadocs/spring-boot-starter-logging-1.5.14.RELEASE-javadoc.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-logging/javadocs/spring-boot-starter-logging-1.5.14.RELEASE-javadoc.jar
cachedGrapes: resource not reachable for org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-logging/javadocs/spring-boot-starter-logging-1.5.14.RELEASE-javadoc.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE-javadoc.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE-javadoc.jar
localm2: resource not reachable for org/springframework/boot#spring-boot-starter-logging;1.5.14.RELEASE: res=file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE-javadoc.jar
trying https://jcenter.bintray.com/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE-javadoc.jar
tried https://jcenter.bintray.com/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE-javadoc.jar
HTTP response status: 404 url=https://jcenter.bintray.com/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE-javadoc.jar
CLIENT ERROR: null url=https://jcenter.bintray.com/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE-javadoc.jar
jcenter: resource not reachable for org/springframework/boot#spring-boot-starter-logging;1.5.14.RELEASE: res=https://jcenter.bintray.com/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE-javadoc.jar
trying https://repo1.maven.org/maven2/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE-javadoc.jar
tried https://repo1.maven.org/maven2/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE-javadoc.jar
HTTP response status: 404 url=https://repo1.maven.org/maven2/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE-javadoc.jar
CLIENT ERROR: Not Found url=https://repo1.maven.org/maven2/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE-javadoc.jar
ibiblio: resource not reachable for org/springframework/boot#spring-boot-starter-logging;1.5.14.RELEASE: res=https://repo1.maven.org/maven2/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE-javadoc.jar
trying http://repo.spring.io/milestone/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE-javadoc.jar
tried http://repo.spring.io/milestone/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE-javadoc.jar
HTTP response status: 404 url=http://repo.spring.io/milestone/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE-javadoc.jar
CLIENT ERROR: Not Found url=http://repo.spring.io/milestone/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE-javadoc.jar
milestone: resource not reachable for org/springframework/boot#spring-boot-starter-logging;1.5.14.RELEASE: res=http://repo.spring.io/milestone/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE-javadoc.jar
trying http://repo.spring.io/milestone/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE-javadoc.jar
tried http://repo.spring.io/milestone/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE-javadoc.jar
HTTP response status: 404 url=http://repo.spring.io/milestone/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE-javadoc.jar
CLIENT ERROR: Not Found url=http://repo.spring.io/milestone/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE-javadoc.jar
milestone: resource not reachable for org/springframework/boot#spring-boot-starter-logging;1.5.14.RELEASE: res=http://repo.spring.io/milestone/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE-javadoc.jar
no javadoc artifact found for org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE
default-cache: parsed downloaded md file for org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE; parsed=org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE
org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE is changing, but has not changed: will trust cached artifacts if any
checking org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE from localm2 against [none]
module revision kept as first found: org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE from localm2
found org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→ch.qos.logback#logback-classic;1.1.11 [compile→master()]
loadData of ch.qos.logback#logback-classic;1.1.11 of rootConf=default
using downloadGrapes to resolve ch.qos.logback#logback-classic;1.1.11
downloadGrapes: Checking cache for: dependency: ch.qos.logback#logback-classic;1.1.11 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/ch.qos.logback/logback-classic/ivy-1.1.11.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for ch.qos.logback#logback-classic;1.1.11 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/ch.qos.logback/logback-classic/ivy-1.1.11.xml
downloadGrapes: module revision found in cache: ch.qos.logback#logback-classic;1.1.11
found ch.qos.logback#logback-classic;1.1.11 in localm2
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#log4j-over-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#log4j-over-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#jul-to-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#jul-to-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.h2database#h2;1.2.132 {test=[runtime(), master()]} ⇒ dependency: com.h2database#h2;1.4.197 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.9 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.0 {optional=[compile(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;1.7.1 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→ch.qos.logback#logback-classic;1.1.11 [compile→compile()]
loadData of ch.qos.logback#logback-classic;1.1.11 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#log4j-over-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#log4j-over-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#jul-to-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#jul-to-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.h2database#h2;1.2.132 {test=[runtime(), master()]} ⇒ dependency: com.h2database#h2;1.4.197 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.9 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.0 {optional=[compile(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;1.7.1 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
== resolving dependencies ch.qos.logback#logback-classic;1.1.11→ch.qos.logback#logback-core;1.1.11 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#log4j-over-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#log4j-over-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#jul-to-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#jul-to-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.h2database#h2;1.2.132 {test=[runtime(), master()]} ⇒ dependency: com.h2database#h2;1.4.197 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.9 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.0 {optional=[compile(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;1.7.1 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#log4j-over-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#log4j-over-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#jul-to-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#jul-to-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.h2database#h2;1.2.132 {test=[runtime(), master()]} ⇒ dependency: com.h2database#h2;1.4.197 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.9 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.0 {optional=[compile(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;1.7.1 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#log4j-over-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#log4j-over-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#jul-to-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#jul-to-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.h2database#h2;1.2.132 {test=[runtime(), master()]} ⇒ dependency: com.h2database#h2;1.4.197 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.9 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.0 {optional=[compile(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;1.7.1 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#log4j-over-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#log4j-over-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#jul-to-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#jul-to-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.h2database#h2;1.2.132 {test=[runtime(), master()]} ⇒ dependency: com.h2database#h2;1.4.197 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.9 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.0 {optional=[compile(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;1.7.1 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
loadData of ch.qos.logback#logback-core;1.1.11 of rootConf=default
using downloadGrapes to resolve ch.qos.logback#logback-core;1.1.11
downloadGrapes: Checking cache for: dependency: ch.qos.logback#logback-core;1.1.11 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/ch.qos.logback/logback-core/ivy-1.1.11.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for ch.qos.logback#logback-core;1.1.11 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/ch.qos.logback/logback-core/ivy-1.1.11.xml
downloadGrapes: module revision found in cache: ch.qos.logback#logback-core;1.1.11
found ch.qos.logback#logback-core;1.1.11 in localm2
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.2 {test=[runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;1.7.1 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
== resolving dependencies ch.qos.logback#logback-classic;1.1.11→ch.qos.logback#logback-core;1.1.11 [compile→compile()]
loadData of ch.qos.logback#logback-core;1.1.11 of rootConf=default
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.2 {test=[runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;1.7.1 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
== resolving dependencies ch.qos.logback#logback-classic;1.1.11→org.slf4j#slf4j-api;1.7.25 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#log4j-over-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#log4j-over-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#jul-to-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#jul-to-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.h2database#h2;1.2.132 {test=[runtime(), master()]} ⇒ dependency: com.h2database#h2;1.4.197 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.9 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.0 {optional=[compile(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;1.7.1 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#log4j-over-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#log4j-over-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#jul-to-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#jul-to-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.h2database#h2;1.2.132 {test=[runtime(), master()]} ⇒ dependency: com.h2database#h2;1.4.197 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.9 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.0 {optional=[compile(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;1.7.1 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#log4j-over-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#log4j-over-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#jul-to-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#jul-to-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.h2database#h2;1.2.132 {test=[runtime(), master()]} ⇒ dependency: com.h2database#h2;1.4.197 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.9 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.0 {optional=[compile(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;1.7.1 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#log4j-over-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#log4j-over-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#jul-to-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#jul-to-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.h2database#h2;1.2.132 {test=[runtime(), master()]} ⇒ dependency: com.h2database#h2;1.4.197 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.9 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.0 {optional=[compile(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;1.7.1 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
using downloadGrapes to resolve org.slf4j#slf4j-api;1.7.25
downloadGrapes: Checking cache for: dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.slf4j/slf4j-api/ivy-1.7.25.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.slf4j#slf4j-api;1.7.25 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.slf4j/slf4j-api/ivy-1.7.25.xml
downloadGrapes: module revision found in cache: org.slf4j#slf4j-api;1.7.25
found org.slf4j#slf4j-api;1.7.25 in localm2
== resolving dependencies ch.qos.logback#logback-classic;1.1.11→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→org.slf4j#jcl-over-slf4j;1.7.25 [compile→master()]
loadData of org.slf4j#jcl-over-slf4j;1.7.25 of rootConf=default
using downloadGrapes to resolve org.slf4j#jcl-over-slf4j;1.7.25
downloadGrapes: Checking cache for: dependency: org.slf4j#jcl-over-slf4j;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.slf4j/jcl-over-slf4j/ivy-1.7.25.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.slf4j#jcl-over-slf4j;1.7.25 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.slf4j/jcl-over-slf4j/ivy-1.7.25.xml
downloadGrapes: module revision found in cache: org.slf4j#jcl-over-slf4j;1.7.25
found org.slf4j#jcl-over-slf4j;1.7.25 in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→org.slf4j#jcl-over-slf4j;1.7.25 [compile→compile()]
loadData of org.slf4j#jcl-over-slf4j;1.7.25 of rootConf=default
== resolving dependencies org.slf4j#jcl-over-slf4j;1.7.25→org.slf4j#slf4j-api;1.7.25 [compile→master()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.slf4j#jcl-over-slf4j;1.7.25→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→org.slf4j#jul-to-slf4j;1.7.25 [compile→master()]
loadData of org.slf4j#jul-to-slf4j;1.7.25 of rootConf=default
using downloadGrapes to resolve org.slf4j#jul-to-slf4j;1.7.25
downloadGrapes: Checking cache for: dependency: org.slf4j#jul-to-slf4j;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.slf4j/jul-to-slf4j/ivy-1.7.25.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.slf4j#jul-to-slf4j;1.7.25 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.slf4j/jul-to-slf4j/ivy-1.7.25.xml
downloadGrapes: module revision found in cache: org.slf4j#jul-to-slf4j;1.7.25
found org.slf4j#jul-to-slf4j;1.7.25 in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→org.slf4j#jul-to-slf4j;1.7.25 [compile→compile()]
loadData of org.slf4j#jul-to-slf4j;1.7.25 of rootConf=default
== resolving dependencies org.slf4j#jul-to-slf4j;1.7.25→org.slf4j#slf4j-api;1.7.25 [compile→master()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.slf4j#jul-to-slf4j;1.7.25→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→org.slf4j#log4j-over-slf4j;1.7.25 [compile→master()]
loadData of org.slf4j#log4j-over-slf4j;1.7.25 of rootConf=default
using downloadGrapes to resolve org.slf4j#log4j-over-slf4j;1.7.25
downloadGrapes: Checking cache for: dependency: org.slf4j#log4j-over-slf4j;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.slf4j/log4j-over-slf4j/ivy-1.7.25.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.slf4j#log4j-over-slf4j;1.7.25 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.slf4j/log4j-over-slf4j/ivy-1.7.25.xml
downloadGrapes: module revision found in cache: org.slf4j#log4j-over-slf4j;1.7.25
found org.slf4j#log4j-over-slf4j;1.7.25 in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→org.slf4j#log4j-over-slf4j;1.7.25 [compile→compile()]
loadData of org.slf4j#log4j-over-slf4j;1.7.25 of rootConf=default
== resolving dependencies org.slf4j#log4j-over-slf4j;1.7.25→org.slf4j#slf4j-api;1.7.25 [compile→master()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.slf4j#log4j-over-slf4j;1.7.25→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
no ivy file in cache for org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-tomcat/ivy-1.5.14.RELEASE.xml
no ivy file in cache for org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-tomcat/ivy-1.5.14.RELEASE.xml
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-tomcat/ivy-1.5.14.RELEASE.xml
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-tomcat/ivy-1.5.14.RELEASE.xml
cachedGrapes: resource not reachable for org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-tomcat/ivy-1.5.14.RELEASE.xml
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-tomcat/jars/spring-boot-starter-tomcat-1.5.14.RELEASE.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-tomcat/jars/spring-boot-starter-tomcat-1.5.14.RELEASE.jar
cachedGrapes: resource not reachable for org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-tomcat/jars/spring-boot-starter-tomcat-1.5.14.RELEASE.jar
cachedGrapes: no ivy file nor artifact found for org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE
don’t use cache for org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE: checkModified=true
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE.pom
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE.pom
localm2: found md file for org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE
⇒ file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE.pom (1.5.14.RELEASE)
parser = pom parser
no ivy file in cache for org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-tomcat/ivy-1.5.14.RELEASE.xml
downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE.pom …
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE.pom
to /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-tomcat/ivy-1.5.14.RELEASE.xml.original.part
sha1 file found for file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE.pom: checking…
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE.pom.sha1
to /var/folders/k3/zv8hzdm17vv69j485fv3cf9r0000gn/T/ivytmp4539610806202423781sha1
sha1 OK for file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE.pom
[SUCCESSFUL ] org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE!spring-boot-starter-tomcat.pom(pom.original) (3ms)
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-starters;1.5.14.RELEASE {}
Entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starters/ivy-1.5.14.RELEASE.xml
found ivy file in cache for org.springframework.boot#spring-boot-starters;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starters/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-starters;1.5.14.RELEASE
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-tomcat/jars/spring-boot-starter-tomcat-1.5.14.RELEASE.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-tomcat/jars/spring-boot-starter-tomcat-1.5.14.RELEASE.jar
cachedGrapes: resource not reachable for org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-tomcat/jars/spring-boot-starter-tomcat-1.5.14.RELEASE.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE.jar
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-tomcat/sources/spring-boot-starter-tomcat-1.5.14.RELEASE-sources.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-tomcat/sources/spring-boot-starter-tomcat-1.5.14.RELEASE-sources.jar
cachedGrapes: resource not reachable for org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-tomcat/sources/spring-boot-starter-tomcat-1.5.14.RELEASE-sources.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE-sources.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE-sources.jar
localm2: resource not reachable for org/springframework/boot#spring-boot-starter-tomcat;1.5.14.RELEASE: res=file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE-sources.jar
trying https://jcenter.bintray.com/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE-sources.jar
tried https://jcenter.bintray.com/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE-sources.jar
source artifact found for org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-tomcat/javadocs/spring-boot-starter-tomcat-1.5.14.RELEASE-javadoc.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-tomcat/javadocs/spring-boot-starter-tomcat-1.5.14.RELEASE-javadoc.jar
cachedGrapes: resource not reachable for org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-tomcat/javadocs/spring-boot-starter-tomcat-1.5.14.RELEASE-javadoc.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE-javadoc.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE-javadoc.jar
localm2: resource not reachable for org/springframework/boot#spring-boot-starter-tomcat;1.5.14.RELEASE: res=file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE-javadoc.jar
trying https://jcenter.bintray.com/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE-javadoc.jar
tried https://jcenter.bintray.com/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE-javadoc.jar
HTTP response status: 404 url=https://jcenter.bintray.com/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE-javadoc.jar
CLIENT ERROR: null url=https://jcenter.bintray.com/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE-javadoc.jar
jcenter: resource not reachable for org/springframework/boot#spring-boot-starter-tomcat;1.5.14.RELEASE: res=https://jcenter.bintray.com/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE-javadoc.jar
trying https://repo1.maven.org/maven2/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE-javadoc.jar
tried https://repo1.maven.org/maven2/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE-javadoc.jar
HTTP response status: 404 url=https://repo1.maven.org/maven2/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE-javadoc.jar
CLIENT ERROR: Not Found url=https://repo1.maven.org/maven2/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE-javadoc.jar
ibiblio: resource not reachable for org/springframework/boot#spring-boot-starter-tomcat;1.5.14.RELEASE: res=https://repo1.maven.org/maven2/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE-javadoc.jar
trying http://repo.spring.io/milestone/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE-javadoc.jar
tried http://repo.spring.io/milestone/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE-javadoc.jar
HTTP response status: 404 url=http://repo.spring.io/milestone/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE-javadoc.jar
CLIENT ERROR: Not Found url=http://repo.spring.io/milestone/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE-javadoc.jar
milestone: resource not reachable for org/springframework/boot#spring-boot-starter-tomcat;1.5.14.RELEASE: res=http://repo.spring.io/milestone/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE-javadoc.jar
trying http://repo.spring.io/milestone/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE-javadoc.jar
tried http://repo.spring.io/milestone/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE-javadoc.jar
HTTP response status: 404 url=http://repo.spring.io/milestone/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE-javadoc.jar
CLIENT ERROR: Not Found url=http://repo.spring.io/milestone/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE-javadoc.jar
milestone: resource not reachable for org/springframework/boot#spring-boot-starter-tomcat;1.5.14.RELEASE: res=http://repo.spring.io/milestone/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE-javadoc.jar
no javadoc artifact found for org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE
default-cache: parsed downloaded md file for org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE; parsed=org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE
org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE is changing, but has not changed: will trust cached artifacts if any
checking org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE from localm2 against [none]
module revision kept as first found: org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE from localm2
found org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-core;8.5.31 [compile→master()]
loadData of org.apache.tomcat.embed#tomcat-embed-core;8.5.31 of rootConf=default
using downloadGrapes to resolve org.apache.tomcat.embed#tomcat-embed-core;8.5.31
downloadGrapes: Checking cache for: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.tomcat.embed/tomcat-embed-core/ivy-8.5.31.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.apache.tomcat.embed#tomcat-embed-core;8.5.31 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.tomcat.embed/tomcat-embed-core/ivy-8.5.31.xml
downloadGrapes: module revision found in cache: org.apache.tomcat.embed#tomcat-embed-core;8.5.31
found org.apache.tomcat.embed#tomcat-embed-core;8.5.31 in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-core;8.5.31 [compile→compile()]
loadData of org.apache.tomcat.embed#tomcat-embed-core;8.5.31 of rootConf=default
== resolving dependencies org.apache.tomcat.embed#tomcat-embed-core;8.5.31→org.apache.tomcat#tomcat-annotations-api;8.5.31 [compile→master()]
loadData of org.apache.tomcat#tomcat-annotations-api;8.5.31 of rootConf=default
using downloadGrapes to resolve org.apache.tomcat#tomcat-annotations-api;8.5.31
downloadGrapes: Checking cache for: dependency: org.apache.tomcat#tomcat-annotations-api;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.tomcat/tomcat-annotations-api/ivy-8.5.31.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.apache.tomcat#tomcat-annotations-api;8.5.31 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.tomcat/tomcat-annotations-api/ivy-8.5.31.xml
downloadGrapes: module revision found in cache: org.apache.tomcat#tomcat-annotations-api;8.5.31
found org.apache.tomcat#tomcat-annotations-api;8.5.31 in localm2
== resolving dependencies org.apache.tomcat.embed#tomcat-embed-core;8.5.31→org.apache.tomcat#tomcat-annotations-api;8.5.31 [compile→compile()]
loadData of org.apache.tomcat#tomcat-annotations-api;8.5.31 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-el;8.5.31 [compile→master()]
loadData of org.apache.tomcat.embed#tomcat-embed-el;8.5.31 of rootConf=default
using downloadGrapes to resolve org.apache.tomcat.embed#tomcat-embed-el;8.5.31
downloadGrapes: Checking cache for: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.tomcat.embed/tomcat-embed-el/ivy-8.5.31.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.apache.tomcat.embed#tomcat-embed-el;8.5.31 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.tomcat.embed/tomcat-embed-el/ivy-8.5.31.xml
downloadGrapes: module revision found in cache: org.apache.tomcat.embed#tomcat-embed-el;8.5.31
found org.apache.tomcat.embed#tomcat-embed-el;8.5.31 in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-el;8.5.31 [compile→compile()]
loadData of org.apache.tomcat.embed#tomcat-embed-el;8.5.31 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 [compile→master()]
loadData of org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 of rootConf=default
using downloadGrapes to resolve org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31
downloadGrapes: Checking cache for: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.tomcat.embed/tomcat-embed-websocket/ivy-8.5.31.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.tomcat.embed/tomcat-embed-websocket/ivy-8.5.31.xml
downloadGrapes: module revision found in cache: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31
found org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 [compile→compile()]
loadData of org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 of rootConf=default
== resolving dependencies org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31→org.apache.tomcat.embed#tomcat-embed-core;8.5.31 [compile→master()]
loadData of org.apache.tomcat.embed#tomcat-embed-core;8.5.31 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31→org.apache.tomcat.embed#tomcat-embed-core;8.5.31 [compile→compile()]
loadData of org.apache.tomcat.embed#tomcat-embed-core;8.5.31 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.hibernate#hibernate-validator;5.3.6.Final [compile→master()]
loadData of org.hibernate#hibernate-validator;5.3.6.Final of rootConf=default
using downloadGrapes to resolve org.hibernate#hibernate-validator;5.3.6.Final
downloadGrapes: Checking cache for: dependency: org.hibernate#hibernate-validator;5.3.6.Final {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.hibernate/hibernate-validator/ivy-5.3.6.Final.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.hibernate#hibernate-validator;5.3.6.Final (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.hibernate/hibernate-validator/ivy-5.3.6.Final.xml
downloadGrapes: module revision found in cache: org.hibernate#hibernate-validator;5.3.6.Final
found org.hibernate#hibernate-validator;5.3.6.Final in localm2
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.hibernate#hibernate-validator;5.3.6.Final [compile→compile()]
loadData of org.hibernate#hibernate-validator;5.3.6.Final of rootConf=default
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
== resolving dependencies org.hibernate#hibernate-validator;5.3.6.Final→javax.validation#validation-api;1.1.0.Final [compile→master()]
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
loadData of javax.validation#validation-api;1.1.0.Final of rootConf=default
using downloadGrapes to resolve javax.validation#validation-api;1.1.0.Final
downloadGrapes: Checking cache for: dependency: javax.validation#validation-api;1.1.0.Final {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/javax.validation/validation-api/ivy-1.1.0.Final.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for javax.validation#validation-api;1.1.0.Final (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/javax.validation/validation-api/ivy-1.1.0.Final.xml
downloadGrapes: module revision found in cache: javax.validation#validation-api;1.1.0.Final
found javax.validation#validation-api;1.1.0.Final in localm2
== resolving dependencies org.hibernate#hibernate-validator;5.3.6.Final→javax.validation#validation-api;1.1.0.Final [compile→compile()]
loadData of javax.validation#validation-api;1.1.0.Final of rootConf=default
== resolving dependencies org.hibernate#hibernate-validator;5.3.6.Final→org.jboss.logging#jboss-logging;3.3.2.Final [compile→master()]
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
loadData of org.jboss.logging#jboss-logging;3.3.2.Final of rootConf=default
using downloadGrapes to resolve org.jboss.logging#jboss-logging;3.3.2.Final
downloadGrapes: Checking cache for: dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.jboss.logging/jboss-logging/ivy-3.3.2.Final.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.jboss.logging#jboss-logging;3.3.2.Final (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.jboss.logging/jboss-logging/ivy-3.3.2.Final.xml
downloadGrapes: module revision found in cache: org.jboss.logging#jboss-logging;3.3.2.Final
found org.jboss.logging#jboss-logging;3.3.2.Final in localm2
dependency descriptor has been mediated: dependency: log4j#log4j;1.2.16 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: log4j#log4j;1.2.17 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.logging.log4j#log4j-api;2.0 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.apache.logging.log4j#log4j-api;2.7 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.2 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {provided=[compile(), provided(), runtime(), master()]}
== resolving dependencies org.hibernate#hibernate-validator;5.3.6.Final→org.jboss.logging#jboss-logging;3.3.2.Final [compile→compile()]
loadData of org.jboss.logging#jboss-logging;3.3.2.Final of rootConf=default
dependency descriptor has been mediated: dependency: log4j#log4j;1.2.16 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: log4j#log4j;1.2.17 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.logging.log4j#log4j-api;2.0 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.apache.logging.log4j#log4j-api;2.7 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.2 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {provided=[compile(), provided(), runtime(), master()]}
== resolving dependencies org.hibernate#hibernate-validator;5.3.6.Final→com.fasterxml#classmate;1.3.4 [compile→master()]
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
loadData of com.fasterxml#classmate;1.3.4 of rootConf=default
using downloadGrapes to resolve com.fasterxml#classmate;1.3.4
downloadGrapes: Checking cache for: dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.fasterxml/classmate/ivy-1.3.4.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for com.fasterxml#classmate;1.3.4 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.fasterxml/classmate/ivy-1.3.4.xml
downloadGrapes: module revision found in cache: com.fasterxml#classmate;1.3.4
found com.fasterxml#classmate;1.3.4 in localm2
== resolving dependencies org.hibernate#hibernate-validator;5.3.6.Final→com.fasterxml#classmate;1.3.4 [compile→compile()]
loadData of com.fasterxml#classmate;1.3.4 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→master()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
using downloadGrapes to resolve com.fasterxml.jackson.core#jackson-databind;2.8.11.2
downloadGrapes: Checking cache for: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
no ivy file in cache for com.fasterxml.jackson.core#jackson-databind;2.8.11.2: tried /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-databind/ivy-2.8.11.2.xml
no ivy file in cache for com.fasterxml.jackson.core#jackson-databind;2.8.11.2: tried /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-databind/ivy-2.8.11.2.xml
trying /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-databind/ivy-2.8.11.2.xml
tried /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-databind/ivy-2.8.11.2.xml
cachedGrapes: resource not reachable for com.fasterxml.jackson.core#jackson-databind;2.8.11.2: res=/Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-databind/ivy-2.8.11.2.xml
trying /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-databind/jars/jackson-databind-2.8.11.2.jar
tried /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-databind/jars/jackson-databind-2.8.11.2.jar
cachedGrapes: resource not reachable for com.fasterxml.jackson.core#jackson-databind;2.8.11.2: res=/Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-databind/jars/jackson-databind-2.8.11.2.jar
cachedGrapes: no ivy file nor artifact found for com.fasterxml.jackson.core#jackson-databind;2.8.11.2
don’t use cache for com.fasterxml.jackson.core#jackson-databind;2.8.11.2: checkModified=true
trying file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.8.11.2/jackson-databind-2.8.11.2.pom
tried file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.8.11.2/jackson-databind-2.8.11.2.pom
localm2: found md file for com.fasterxml.jackson.core#jackson-databind;2.8.11.2
⇒ file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.8.11.2/jackson-databind-2.8.11.2.pom (2.8.11.2)
parser = pom parser
no ivy file in cache for com.fasterxml.jackson.core#jackson-databind;2.8.11.2: tried /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-databind/ivy-2.8.11.2.xml
downloading file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.8.11.2/jackson-databind-2.8.11.2.pom …
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.8.11.2/jackson-databind-2.8.11.2.pom
to /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-databind/ivy-2.8.11.2.xml.original.part
sha1 file found for file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.8.11.2/jackson-databind-2.8.11.2.pom: checking…
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.8.11.2/jackson-databind-2.8.11.2.pom.sha1
to /var/folders/k3/zv8hzdm17vv69j485fv3cf9r0000gn/T/ivytmp7884663141936778562sha1
sha1 OK for file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.8.11.2/jackson-databind-2.8.11.2.pom
[SUCCESSFUL ] com.fasterxml.jackson.core#jackson-databind;2.8.11.2!jackson-databind.pom(pom.original) (4ms)
downloadGrapes: Checking cache for: dependency: com.fasterxml.jackson#jackson-parent;2.8 {}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson/jackson-parent/ivy-2.8.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for com.fasterxml.jackson#jackson-parent;2.8 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson/jackson-parent/ivy-2.8.xml
downloadGrapes: module revision found in cache: com.fasterxml.jackson#jackson-parent;2.8
trying /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-databind/bundles/jackson-databind-2.8.11.2.jar
tried /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-databind/bundles/jackson-databind-2.8.11.2.jar
cachedGrapes: resource not reachable for com.fasterxml.jackson.core#jackson-databind;2.8.11.2: res=/Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-databind/bundles/jackson-databind-2.8.11.2.jar
trying file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.8.11.2/jackson-databind-2.8.11.2.jar
tried file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.8.11.2/jackson-databind-2.8.11.2.jar
trying /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-databind/sources/jackson-databind-2.8.11.2-sources.jar
tried /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-databind/sources/jackson-databind-2.8.11.2-sources.jar
cachedGrapes: resource not reachable for com.fasterxml.jackson.core#jackson-databind;2.8.11.2: res=/Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-databind/sources/jackson-databind-2.8.11.2-sources.jar
trying file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.8.11.2/jackson-databind-2.8.11.2-sources.jar
tried file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.8.11.2/jackson-databind-2.8.11.2-sources.jar
localm2: resource not reachable for com/fasterxml/jackson/core#jackson-databind;2.8.11.2: res=file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.8.11.2/jackson-databind-2.8.11.2-sources.jar
trying https://jcenter.bintray.com/com/fasterxml/jackson/core/jackson-databind/2.8.11.2/jackson-databind-2.8.11.2-sources.jar
tried https://jcenter.bintray.com/com/fasterxml/jackson/core/jackson-databind/2.8.11.2/jackson-databind-2.8.11.2-sources.jar
source artifact found for com.fasterxml.jackson.core#jackson-databind;2.8.11.2
trying /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-databind/javadocs/jackson-databind-2.8.11.2-javadoc.jar
tried /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-databind/javadocs/jackson-databind-2.8.11.2-javadoc.jar
cachedGrapes: resource not reachable for com.fasterxml.jackson.core#jackson-databind;2.8.11.2: res=/Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-databind/javadocs/jackson-databind-2.8.11.2-javadoc.jar
trying file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.8.11.2/jackson-databind-2.8.11.2-javadoc.jar
tried file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.8.11.2/jackson-databind-2.8.11.2-javadoc.jar
localm2: resource not reachable for com/fasterxml/jackson/core#jackson-databind;2.8.11.2: res=file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.8.11.2/jackson-databind-2.8.11.2-javadoc.jar
trying https://jcenter.bintray.com/com/fasterxml/jackson/core/jackson-databind/2.8.11.2/jackson-databind-2.8.11.2-javadoc.jar
tried https://jcenter.bintray.com/com/fasterxml/jackson/core/jackson-databind/2.8.11.2/jackson-databind-2.8.11.2-javadoc.jar
javadoc artifact found for com.fasterxml.jackson.core#jackson-databind;2.8.11.2
default-cache: parsed downloaded md file for com.fasterxml.jackson.core#jackson-databind;2.8.11.2; parsed=com.fasterxml.jackson.core#jackson-databind;2.8.11.2
com.fasterxml.jackson.core#jackson-databind;2.8.11.2 is changing, but has not changed: will trust cached artifacts if any
checking com.fasterxml.jackson.core#jackson-databind;2.8.11.2 from localm2 against [none]
module revision kept as first found: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 from localm2
found com.fasterxml.jackson.core#jackson-databind;2.8.11.2 in localm2
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.10 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.10 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.fasterxml.jackson.core#jackson-databind;2.8.11.2→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.10 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.10 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.10 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.10 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
using downloadGrapes to resolve com.fasterxml.jackson.core#jackson-annotations;2.8.0
downloadGrapes: Checking cache for: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-annotations/ivy-2.8.0.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for com.fasterxml.jackson.core#jackson-annotations;2.8.0 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-annotations/ivy-2.8.0.xml
downloadGrapes: module revision found in cache: com.fasterxml.jackson.core#jackson-annotations;2.8.0
found com.fasterxml.jackson.core#jackson-annotations;2.8.0 in localm2
== resolving dependencies com.fasterxml.jackson.core#jackson-databind;2.8.11.2→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
== resolving dependencies com.fasterxml.jackson.core#jackson-databind;2.8.11.2→com.fasterxml.jackson.core#jackson-core;2.8.11 [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.10 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.10 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.10 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.10 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
using downloadGrapes to resolve com.fasterxml.jackson.core#jackson-core;2.8.11
downloadGrapes: Checking cache for: dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
no ivy file in cache for com.fasterxml.jackson.core#jackson-core;2.8.11: tried /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-core/ivy-2.8.11.xml
no ivy file in cache for com.fasterxml.jackson.core#jackson-core;2.8.11: tried /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-core/ivy-2.8.11.xml
trying /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-core/ivy-2.8.11.xml
tried /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-core/ivy-2.8.11.xml
cachedGrapes: resource not reachable for com.fasterxml.jackson.core#jackson-core;2.8.11: res=/Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-core/ivy-2.8.11.xml
trying /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-core/jars/jackson-core-2.8.11.jar
tried /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-core/jars/jackson-core-2.8.11.jar
cachedGrapes: resource not reachable for com.fasterxml.jackson.core#jackson-core;2.8.11: res=/Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-core/jars/jackson-core-2.8.11.jar
cachedGrapes: no ivy file nor artifact found for com.fasterxml.jackson.core#jackson-core;2.8.11
don’t use cache for com.fasterxml.jackson.core#jackson-core;2.8.11: checkModified=true
trying file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.8.11/jackson-core-2.8.11.pom
tried file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.8.11/jackson-core-2.8.11.pom
localm2: found md file for com.fasterxml.jackson.core#jackson-core;2.8.11
⇒ file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.8.11/jackson-core-2.8.11.pom (2.8.11)
parser = pom parser
no ivy file in cache for com.fasterxml.jackson.core#jackson-core;2.8.11: tried /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-core/ivy-2.8.11.xml
downloading file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.8.11/jackson-core-2.8.11.pom …
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.8.11/jackson-core-2.8.11.pom
to /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-core/ivy-2.8.11.xml.original.part
sha1 file found for file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.8.11/jackson-core-2.8.11.pom: checking…
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.8.11/jackson-core-2.8.11.pom.sha1
to /var/folders/k3/zv8hzdm17vv69j485fv3cf9r0000gn/T/ivytmp5485854263596524795sha1
sha1 OK for file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.8.11/jackson-core-2.8.11.pom
[SUCCESSFUL ] com.fasterxml.jackson.core#jackson-core;2.8.11!jackson-core.pom(pom.original) (3ms)
downloadGrapes: Checking cache for: dependency: com.fasterxml.jackson#jackson-parent;2.8 {}
Entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson/jackson-parent/ivy-2.8.xml
found ivy file in cache for com.fasterxml.jackson#jackson-parent;2.8 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson/jackson-parent/ivy-2.8.xml
downloadGrapes: module revision found in cache: com.fasterxml.jackson#jackson-parent;2.8
trying /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-core/bundles/jackson-core-2.8.11.jar
tried /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-core/bundles/jackson-core-2.8.11.jar
cachedGrapes: resource not reachable for com.fasterxml.jackson.core#jackson-core;2.8.11: res=/Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-core/bundles/jackson-core-2.8.11.jar
trying file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.8.11/jackson-core-2.8.11.jar
tried file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.8.11/jackson-core-2.8.11.jar
trying /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-core/sources/jackson-core-2.8.11-sources.jar
tried /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-core/sources/jackson-core-2.8.11-sources.jar
cachedGrapes: resource not reachable for com.fasterxml.jackson.core#jackson-core;2.8.11: res=/Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-core/sources/jackson-core-2.8.11-sources.jar
trying file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.8.11/jackson-core-2.8.11-sources.jar
tried file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.8.11/jackson-core-2.8.11-sources.jar
localm2: resource not reachable for com/fasterxml/jackson/core#jackson-core;2.8.11: res=file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.8.11/jackson-core-2.8.11-sources.jar
trying https://jcenter.bintray.com/com/fasterxml/jackson/core/jackson-core/2.8.11/jackson-core-2.8.11-sources.jar
tried https://jcenter.bintray.com/com/fasterxml/jackson/core/jackson-core/2.8.11/jackson-core-2.8.11-sources.jar
source artifact found for com.fasterxml.jackson.core#jackson-core;2.8.11
trying /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-core/javadocs/jackson-core-2.8.11-javadoc.jar
tried /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-core/javadocs/jackson-core-2.8.11-javadoc.jar
cachedGrapes: resource not reachable for com.fasterxml.jackson.core#jackson-core;2.8.11: res=/Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-core/javadocs/jackson-core-2.8.11-javadoc.jar
trying file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.8.11/jackson-core-2.8.11-javadoc.jar
tried file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.8.11/jackson-core-2.8.11-javadoc.jar
localm2: resource not reachable for com/fasterxml/jackson/core#jackson-core;2.8.11: res=file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.8.11/jackson-core-2.8.11-javadoc.jar
trying https://jcenter.bintray.com/com/fasterxml/jackson/core/jackson-core/2.8.11/jackson-core-2.8.11-javadoc.jar
tried https://jcenter.bintray.com/com/fasterxml/jackson/core/jackson-core/2.8.11/jackson-core-2.8.11-javadoc.jar
javadoc artifact found for com.fasterxml.jackson.core#jackson-core;2.8.11
default-cache: parsed downloaded md file for com.fasterxml.jackson.core#jackson-core;2.8.11; parsed=com.fasterxml.jackson.core#jackson-core;2.8.11
com.fasterxml.jackson.core#jackson-core;2.8.11 is changing, but has not changed: will trust cached artifacts if any
checking com.fasterxml.jackson.core#jackson-core;2.8.11 from localm2 against [none]
module revision kept as first found: com.fasterxml.jackson.core#jackson-core;2.8.11 from localm2
found com.fasterxml.jackson.core#jackson-core;2.8.11 in localm2
== resolving dependencies com.fasterxml.jackson.core#jackson-databind;2.8.11.2→com.fasterxml.jackson.core#jackson-core;2.8.11 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework#spring-web;4.3.18.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
no ivy file in cache for org.springframework#spring-web;4.3.18.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-web/ivy-4.3.18.RELEASE.xml
no ivy file in cache for org.springframework#spring-web;4.3.18.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-web/ivy-4.3.18.RELEASE.xml
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-web/ivy-4.3.18.RELEASE.xml
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-web/ivy-4.3.18.RELEASE.xml
cachedGrapes: resource not reachable for org.springframework#spring-web;4.3.18.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-web/ivy-4.3.18.RELEASE.xml
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-web/jars/spring-web-4.3.18.RELEASE.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-web/jars/spring-web-4.3.18.RELEASE.jar
cachedGrapes: resource not reachable for org.springframework#spring-web;4.3.18.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-web/jars/spring-web-4.3.18.RELEASE.jar
cachedGrapes: no ivy file nor artifact found for org.springframework#spring-web;4.3.18.RELEASE
don’t use cache for org.springframework#spring-web;4.3.18.RELEASE: checkModified=true
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-web/4.3.18.RELEASE/spring-web-4.3.18.RELEASE.pom
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-web/4.3.18.RELEASE/spring-web-4.3.18.RELEASE.pom
localm2: found md file for org.springframework#spring-web;4.3.18.RELEASE
⇒ file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-web/4.3.18.RELEASE/spring-web-4.3.18.RELEASE.pom (4.3.18.RELEASE)
parser = pom parser
no ivy file in cache for org.springframework#spring-web;4.3.18.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-web/ivy-4.3.18.RELEASE.xml
downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-web/4.3.18.RELEASE/spring-web-4.3.18.RELEASE.pom …
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-web/4.3.18.RELEASE/spring-web-4.3.18.RELEASE.pom
to /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-web/ivy-4.3.18.RELEASE.xml.original.part
sha1 file found for file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-web/4.3.18.RELEASE/spring-web-4.3.18.RELEASE.pom: checking…
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-web/4.3.18.RELEASE/spring-web-4.3.18.RELEASE.pom.sha1
to /var/folders/k3/zv8hzdm17vv69j485fv3cf9r0000gn/T/ivytmp4363301395916712231sha1
sha1 OK for file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-web/4.3.18.RELEASE/spring-web-4.3.18.RELEASE.pom
[SUCCESSFUL ] org.springframework#spring-web;4.3.18.RELEASE!spring-web.pom(pom.original) (3ms)
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-web/jars/spring-web-4.3.18.RELEASE.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-web/jars/spring-web-4.3.18.RELEASE.jar
cachedGrapes: resource not reachable for org.springframework#spring-web;4.3.18.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-web/jars/spring-web-4.3.18.RELEASE.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-web/4.3.18.RELEASE/spring-web-4.3.18.RELEASE.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-web/4.3.18.RELEASE/spring-web-4.3.18.RELEASE.jar
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-web/sources/spring-web-4.3.18.RELEASE-sources.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-web/sources/spring-web-4.3.18.RELEASE-sources.jar
cachedGrapes: resource not reachable for org.springframework#spring-web;4.3.18.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-web/sources/spring-web-4.3.18.RELEASE-sources.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-web/4.3.18.RELEASE/spring-web-4.3.18.RELEASE-sources.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-web/4.3.18.RELEASE/spring-web-4.3.18.RELEASE-sources.jar
localm2: resource not reachable for org/springframework#spring-web;4.3.18.RELEASE: res=file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-web/4.3.18.RELEASE/spring-web-4.3.18.RELEASE-sources.jar
trying https://jcenter.bintray.com/org/springframework/spring-web/4.3.18.RELEASE/spring-web-4.3.18.RELEASE-sources.jar
tried https://jcenter.bintray.com/org/springframework/spring-web/4.3.18.RELEASE/spring-web-4.3.18.RELEASE-sources.jar
source artifact found for org.springframework#spring-web;4.3.18.RELEASE
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-web/javadocs/spring-web-4.3.18.RELEASE-javadoc.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-web/javadocs/spring-web-4.3.18.RELEASE-javadoc.jar
cachedGrapes: resource not reachable for org.springframework#spring-web;4.3.18.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-web/javadocs/spring-web-4.3.18.RELEASE-javadoc.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-web/4.3.18.RELEASE/spring-web-4.3.18.RELEASE-javadoc.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-web/4.3.18.RELEASE/spring-web-4.3.18.RELEASE-javadoc.jar
localm2: resource not reachable for org/springframework#spring-web;4.3.18.RELEASE: res=file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-web/4.3.18.RELEASE/spring-web-4.3.18.RELEASE-javadoc.jar
trying https://jcenter.bintray.com/org/springframework/spring-web/4.3.18.RELEASE/spring-web-4.3.18.RELEASE-javadoc.jar
tried https://jcenter.bintray.com/org/springframework/spring-web/4.3.18.RELEASE/spring-web-4.3.18.RELEASE-javadoc.jar
javadoc artifact found for org.springframework#spring-web;4.3.18.RELEASE
default-cache: parsed downloaded md file for org.springframework#spring-web;4.3.18.RELEASE; parsed=org.springframework#spring-web;4.3.18.RELEASE
org.springframework#spring-web;4.3.18.RELEASE is changing, but has not changed: will trust cached artifacts if any
checking org.springframework#spring-web;4.3.18.RELEASE from localm2 against [none]
module revision kept as first found: org.springframework#spring-web;4.3.18.RELEASE from localm2
found org.springframework#spring-web;4.3.18.RELEASE in localm2
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework#spring-webmvc;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-webmvc;4.3.18.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework#spring-webmvc;4.3.18.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
no ivy file in cache for org.springframework#spring-webmvc;4.3.18.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-webmvc/ivy-4.3.18.RELEASE.xml
no ivy file in cache for org.springframework#spring-webmvc;4.3.18.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-webmvc/ivy-4.3.18.RELEASE.xml
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-webmvc/ivy-4.3.18.RELEASE.xml
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-webmvc/ivy-4.3.18.RELEASE.xml
cachedGrapes: resource not reachable for org.springframework#spring-webmvc;4.3.18.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-webmvc/ivy-4.3.18.RELEASE.xml
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-webmvc/jars/spring-webmvc-4.3.18.RELEASE.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-webmvc/jars/spring-webmvc-4.3.18.RELEASE.jar
cachedGrapes: resource not reachable for org.springframework#spring-webmvc;4.3.18.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-webmvc/jars/spring-webmvc-4.3.18.RELEASE.jar
cachedGrapes: no ivy file nor artifact found for org.springframework#spring-webmvc;4.3.18.RELEASE
don’t use cache for org.springframework#spring-webmvc;4.3.18.RELEASE: checkModified=true
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-webmvc/4.3.18.RELEASE/spring-webmvc-4.3.18.RELEASE.pom
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-webmvc/4.3.18.RELEASE/spring-webmvc-4.3.18.RELEASE.pom
localm2: found md file for org.springframework#spring-webmvc;4.3.18.RELEASE
⇒ file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-webmvc/4.3.18.RELEASE/spring-webmvc-4.3.18.RELEASE.pom (4.3.18.RELEASE)
parser = pom parser
no ivy file in cache for org.springframework#spring-webmvc;4.3.18.RELEASE: tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-webmvc/ivy-4.3.18.RELEASE.xml
downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-webmvc/4.3.18.RELEASE/spring-webmvc-4.3.18.RELEASE.pom …
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-webmvc/4.3.18.RELEASE/spring-webmvc-4.3.18.RELEASE.pom
to /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-webmvc/ivy-4.3.18.RELEASE.xml.original.part
sha1 file found for file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-webmvc/4.3.18.RELEASE/spring-webmvc-4.3.18.RELEASE.pom: checking…
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-webmvc/4.3.18.RELEASE/spring-webmvc-4.3.18.RELEASE.pom.sha1
to /var/folders/k3/zv8hzdm17vv69j485fv3cf9r0000gn/T/ivytmp2758548497485724555sha1
sha1 OK for file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-webmvc/4.3.18.RELEASE/spring-webmvc-4.3.18.RELEASE.pom
[SUCCESSFUL ] org.springframework#spring-webmvc;4.3.18.RELEASE!spring-webmvc.pom(pom.original) (4ms)
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-webmvc/jars/spring-webmvc-4.3.18.RELEASE.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-webmvc/jars/spring-webmvc-4.3.18.RELEASE.jar
cachedGrapes: resource not reachable for org.springframework#spring-webmvc;4.3.18.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-webmvc/jars/spring-webmvc-4.3.18.RELEASE.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-webmvc/4.3.18.RELEASE/spring-webmvc-4.3.18.RELEASE.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-webmvc/4.3.18.RELEASE/spring-webmvc-4.3.18.RELEASE.jar
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-webmvc/sources/spring-webmvc-4.3.18.RELEASE-sources.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-webmvc/sources/spring-webmvc-4.3.18.RELEASE-sources.jar
cachedGrapes: resource not reachable for org.springframework#spring-webmvc;4.3.18.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-webmvc/sources/spring-webmvc-4.3.18.RELEASE-sources.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-webmvc/4.3.18.RELEASE/spring-webmvc-4.3.18.RELEASE-sources.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-webmvc/4.3.18.RELEASE/spring-webmvc-4.3.18.RELEASE-sources.jar
localm2: resource not reachable for org/springframework#spring-webmvc;4.3.18.RELEASE: res=file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-webmvc/4.3.18.RELEASE/spring-webmvc-4.3.18.RELEASE-sources.jar
trying https://jcenter.bintray.com/org/springframework/spring-webmvc/4.3.18.RELEASE/spring-webmvc-4.3.18.RELEASE-sources.jar
tried https://jcenter.bintray.com/org/springframework/spring-webmvc/4.3.18.RELEASE/spring-webmvc-4.3.18.RELEASE-sources.jar
source artifact found for org.springframework#spring-webmvc;4.3.18.RELEASE
trying /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-webmvc/javadocs/spring-webmvc-4.3.18.RELEASE-javadoc.jar
tried /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-webmvc/javadocs/spring-webmvc-4.3.18.RELEASE-javadoc.jar
cachedGrapes: resource not reachable for org.springframework#spring-webmvc;4.3.18.RELEASE: res=/Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-webmvc/javadocs/spring-webmvc-4.3.18.RELEASE-javadoc.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-webmvc/4.3.18.RELEASE/spring-webmvc-4.3.18.RELEASE-javadoc.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-webmvc/4.3.18.RELEASE/spring-webmvc-4.3.18.RELEASE-javadoc.jar
localm2: resource not reachable for org/springframework#spring-webmvc;4.3.18.RELEASE: res=file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-webmvc/4.3.18.RELEASE/spring-webmvc-4.3.18.RELEASE-javadoc.jar
trying https://jcenter.bintray.com/org/springframework/spring-webmvc/4.3.18.RELEASE/spring-webmvc-4.3.18.RELEASE-javadoc.jar
tried https://jcenter.bintray.com/org/springframework/spring-webmvc/4.3.18.RELEASE/spring-webmvc-4.3.18.RELEASE-javadoc.jar
javadoc artifact found for org.springframework#spring-webmvc;4.3.18.RELEASE
default-cache: parsed downloaded md file for org.springframework#spring-webmvc;4.3.18.RELEASE; parsed=org.springframework#spring-webmvc;4.3.18.RELEASE
org.springframework#spring-webmvc;4.3.18.RELEASE is changing, but has not changed: will trust cached artifacts if any
checking org.springframework#spring-webmvc;4.3.18.RELEASE from localm2 against [none]
module revision kept as first found: org.springframework#spring-webmvc;4.3.18.RELEASE from localm2
found org.springframework#spring-webmvc;4.3.18.RELEASE in localm2
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework#spring-webmvc;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-webmvc;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→runtime()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→compile]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: net.sf.jopt-simple#jopt-simple;5.0.3 {optional=[compile(), master()]} ⇒ dependency: net.sf.jopt-simple#jopt-simple;4.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
== resolving dependencies org.springframework#spring-core;4.3.18.RELEASE→commons-logging#commons-logging;1.2 [runtime→runtime()]
dependency descriptor has been mediated: dependency: net.sf.jopt-simple#jopt-simple;5.0.3 {optional=[compile(), master()]} ⇒ dependency: net.sf.jopt-simple#jopt-simple;4.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.jopt-simple#jopt-simple;5.0.3 {optional=[compile(), master()]} ⇒ dependency: net.sf.jopt-simple#jopt-simple;4.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.jopt-simple#jopt-simple;5.0.3 {optional=[compile(), master()]} ⇒ dependency: net.sf.jopt-simple#jopt-simple;4.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.jopt-simple#jopt-simple;5.0.3 {optional=[compile(), master()]} ⇒ dependency: net.sf.jopt-simple#jopt-simple;4.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.jopt-simple#jopt-simple;5.0.3 {optional=[compile(), master()]} ⇒ dependency: net.sf.jopt-simple#jopt-simple;4.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.jopt-simple#jopt-simple;5.0.3 {optional=[compile(), master()]} ⇒ dependency: net.sf.jopt-simple#jopt-simple;4.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
loadData of commons-logging#commons-logging;1.2 of rootConf=default
using downloadGrapes to resolve commons-logging#commons-logging;1.2
downloadGrapes: Checking cache for: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/commons-logging/commons-logging/ivy-1.2.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for commons-logging#commons-logging;1.2 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/commons-logging/commons-logging/ivy-1.2.xml
downloadGrapes: module revision found in cache: commons-logging#commons-logging;1.2
found commons-logging#commons-logging;1.2 in localm2
== resolving dependencies org.springframework#spring-core;4.3.18.RELEASE→commons-logging#commons-logging;1.2 [runtime→compile]
loadData of commons-logging#commons-logging;1.2 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework#spring-core;4.3.18.RELEASE→commons-logging#commons-logging;1.2 [runtime→master()]
loadData of commons-logging#commons-logging;1.2 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework#spring-core;4.3.18.RELEASE→commons-logging#commons-logging;1.2 [runtime→compile()]
loadData of commons-logging#commons-logging;1.2 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot;1.5.14.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot;1.5.14.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.apache.commons#commons-pool2;2.4.2 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-pool2;2.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
== resolving dependencies org.springframework#spring-aop;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework#spring-aop;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework#spring-beans;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-beans;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-aop;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-aop;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework#spring-expression;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-expression;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→ch.qos.logback#logback-classic;1.1.11 [runtime→runtime()]
loadData of ch.qos.logback#logback-classic;1.1.11 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→ch.qos.logback#logback-classic;1.1.11 [runtime→compile]
loadData of ch.qos.logback#logback-classic;1.1.11 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#log4j-over-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#log4j-over-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#jul-to-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#jul-to-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.h2database#h2;1.2.132 {test=[runtime(), master()]} ⇒ dependency: com.h2database#h2;1.4.197 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.9 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.0 {optional=[compile(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;1.7.1 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
== resolving dependencies ch.qos.logback#logback-classic;1.1.11→ch.qos.logback#logback-core;1.1.11 [runtime→runtime()]
loadData of ch.qos.logback#logback-core;1.1.11 of rootConf=default
== resolving dependencies ch.qos.logback#logback-classic;1.1.11→ch.qos.logback#logback-core;1.1.11 [runtime→compile]
loadData of ch.qos.logback#logback-core;1.1.11 of rootConf=default
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.2 {test=[runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;1.7.1 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
== resolving dependencies ch.qos.logback#logback-classic;1.1.11→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
== resolving dependencies ch.qos.logback#logback-classic;1.1.11→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→org.slf4j#jcl-over-slf4j;1.7.25 [runtime→runtime()]
loadData of org.slf4j#jcl-over-slf4j;1.7.25 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→org.slf4j#jcl-over-slf4j;1.7.25 [runtime→compile]
loadData of org.slf4j#jcl-over-slf4j;1.7.25 of rootConf=default
== resolving dependencies org.slf4j#jcl-over-slf4j;1.7.25→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.slf4j#jcl-over-slf4j;1.7.25→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→org.slf4j#jul-to-slf4j;1.7.25 [runtime→runtime()]
loadData of org.slf4j#jul-to-slf4j;1.7.25 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→org.slf4j#jul-to-slf4j;1.7.25 [runtime→compile]
loadData of org.slf4j#jul-to-slf4j;1.7.25 of rootConf=default
== resolving dependencies org.slf4j#jul-to-slf4j;1.7.25→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.slf4j#jul-to-slf4j;1.7.25→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→org.slf4j#log4j-over-slf4j;1.7.25 [runtime→runtime()]
loadData of org.slf4j#log4j-over-slf4j;1.7.25 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→org.slf4j#log4j-over-slf4j;1.7.25 [runtime→compile]
loadData of org.slf4j#log4j-over-slf4j;1.7.25 of rootConf=default
== resolving dependencies org.slf4j#log4j-over-slf4j;1.7.25→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.slf4j#log4j-over-slf4j;1.7.25→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.yaml#snakeyaml;1.17 [runtime→master()]
loadData of org.yaml#snakeyaml;1.17 of rootConf=default
using downloadGrapes to resolve org.yaml#snakeyaml;1.17
downloadGrapes: Checking cache for: dependency: org.yaml#snakeyaml;1.17 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.yaml/snakeyaml/ivy-1.17.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.yaml#snakeyaml;1.17 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.yaml/snakeyaml/ivy-1.17.xml
downloadGrapes: module revision found in cache: org.yaml#snakeyaml;1.17
found org.yaml#snakeyaml;1.17 in localm2
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {test=[runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.yaml#snakeyaml;1.17 [runtime→runtime()]
loadData of org.yaml#snakeyaml;1.17 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.yaml#snakeyaml;1.17 [runtime→compile]
loadData of org.yaml#snakeyaml;1.17 of rootConf=default
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {test=[runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {test=[runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.yaml#snakeyaml;1.17 [runtime→compile()]
loadData of org.yaml#snakeyaml;1.17 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-core;8.5.31 [runtime→runtime()]
loadData of org.apache.tomcat.embed#tomcat-embed-core;8.5.31 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-core;8.5.31 [runtime→compile]
loadData of org.apache.tomcat.embed#tomcat-embed-core;8.5.31 of rootConf=default
== resolving dependencies org.apache.tomcat.embed#tomcat-embed-core;8.5.31→org.apache.tomcat#tomcat-annotations-api;8.5.31 [runtime→runtime()]
loadData of org.apache.tomcat#tomcat-annotations-api;8.5.31 of rootConf=default
== resolving dependencies org.apache.tomcat.embed#tomcat-embed-core;8.5.31→org.apache.tomcat#tomcat-annotations-api;8.5.31 [runtime→compile]
loadData of org.apache.tomcat#tomcat-annotations-api;8.5.31 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-el;8.5.31 [runtime→runtime()]
loadData of org.apache.tomcat.embed#tomcat-embed-el;8.5.31 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-el;8.5.31 [runtime→compile]
loadData of org.apache.tomcat.embed#tomcat-embed-el;8.5.31 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 [runtime→runtime()]
loadData of org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 [runtime→compile]
loadData of org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 of rootConf=default
== resolving dependencies org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31→org.apache.tomcat.embed#tomcat-embed-core;8.5.31 [runtime→runtime()]
loadData of org.apache.tomcat.embed#tomcat-embed-core;8.5.31 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31→org.apache.tomcat.embed#tomcat-embed-core;8.5.31 [runtime→compile]
loadData of org.apache.tomcat.embed#tomcat-embed-core;8.5.31 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.hibernate#hibernate-validator;5.3.6.Final [runtime→runtime()]
loadData of org.hibernate#hibernate-validator;5.3.6.Final of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.hibernate#hibernate-validator;5.3.6.Final [runtime→compile]
loadData of org.hibernate#hibernate-validator;5.3.6.Final of rootConf=default
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
== resolving dependencies org.hibernate#hibernate-validator;5.3.6.Final→javax.validation#validation-api;1.1.0.Final [runtime→runtime()]
loadData of javax.validation#validation-api;1.1.0.Final of rootConf=default
== resolving dependencies org.hibernate#hibernate-validator;5.3.6.Final→javax.validation#validation-api;1.1.0.Final [runtime→compile]
loadData of javax.validation#validation-api;1.1.0.Final of rootConf=default
== resolving dependencies org.hibernate#hibernate-validator;5.3.6.Final→org.jboss.logging#jboss-logging;3.3.2.Final [runtime→runtime()]
loadData of org.jboss.logging#jboss-logging;3.3.2.Final of rootConf=default
== resolving dependencies org.hibernate#hibernate-validator;5.3.6.Final→org.jboss.logging#jboss-logging;3.3.2.Final [runtime→compile]
loadData of org.jboss.logging#jboss-logging;3.3.2.Final of rootConf=default
dependency descriptor has been mediated: dependency: log4j#log4j;1.2.16 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: log4j#log4j;1.2.17 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.logging.log4j#log4j-api;2.0 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.apache.logging.log4j#log4j-api;2.7 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.2 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {provided=[compile(), provided(), runtime(), master()]}
== resolving dependencies org.hibernate#hibernate-validator;5.3.6.Final→com.fasterxml#classmate;1.3.4 [runtime→runtime()]
loadData of com.fasterxml#classmate;1.3.4 of rootConf=default
== resolving dependencies org.hibernate#hibernate-validator;5.3.6.Final→com.fasterxml#classmate;1.3.4 [runtime→compile]
loadData of com.fasterxml#classmate;1.3.4 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.10 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.fasterxml.jackson.core#jackson-databind;2.8.11.2→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
== resolving dependencies com.fasterxml.jackson.core#jackson-databind;2.8.11.2→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
== resolving dependencies com.fasterxml.jackson.core#jackson-databind;2.8.11.2→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
== resolving dependencies com.fasterxml.jackson.core#jackson-databind;2.8.11.2→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework#spring-webmvc;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-webmvc;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework#spring-webmvc;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-webmvc;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-vault-config-rabbitmq/ivy-1.1.1.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-vault-config-rabbitmq/ivy-1.1.1.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE
found org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE in jcenter
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-vault-config/ivy-1.1.1.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-vault-config/ivy-1.1.1.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE
found org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE in jcenter
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-commons/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-commons/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE in localm2
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.6.0 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.6.0 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]} in compile
== resolving dependencies org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE→org.springframework.security#spring-security-crypto;4.2.7.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.6.0 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.6.0 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.6.0 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.6.0 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
loadData of org.springframework.security#spring-security-crypto;4.2.7.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.security#spring-security-crypto;4.2.7.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.security/spring-security-crypto/ivy-4.2.7.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.security#spring-security-crypto;4.2.7.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.security/spring-security-crypto/ivy-4.2.7.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.security#spring-security-crypto;4.2.7.RELEASE
found org.springframework.security#spring-security-crypto;4.2.7.RELEASE in localm2
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE→org.springframework.security#spring-security-crypto;4.2.7.RELEASE [compile→compile()]
loadData of org.springframework.security#spring-security-crypto;4.2.7.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.6.0 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]} in runtime
== resolving dependencies org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE→org.springframework.security#spring-security-crypto;4.2.7.RELEASE [runtime→runtime()]
loadData of org.springframework.security#spring-security-crypto;4.2.7.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE→org.springframework.security#spring-security-crypto;4.2.7.RELEASE [runtime→compile]
loadData of org.springframework.security#spring-security-crypto;4.2.7.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-context/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-context/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE→org.springframework.security#spring-security-crypto;4.2.7.RELEASE [compile→master()]
loadData of org.springframework.security#spring-security-crypto;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE→org.springframework.security#spring-security-crypto;4.2.7.RELEASE [compile→compile()]
loadData of org.springframework.security#spring-security-crypto;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE→org.springframework.security#spring-security-crypto;4.2.7.RELEASE [runtime→runtime()]
loadData of org.springframework.security#spring-security-crypto;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE→org.springframework.security#spring-security-crypto;4.2.7.RELEASE [runtime→compile]
loadData of org.springframework.security#spring-security-crypto;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.vault#spring-vault-core;1.1.2.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
loadData of org.springframework.vault#spring-vault-core;1.1.2.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.vault#spring-vault-core;1.1.2.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.vault#spring-vault-core;1.1.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.vault/spring-vault-core/ivy-1.1.2.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.vault#spring-vault-core;1.1.2.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.vault/spring-vault-core/ivy-1.1.2.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.vault#spring-vault-core;1.1.2.RELEASE
found org.springframework.vault#spring-vault-core;1.1.2.RELEASE in jcenter
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.22.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.10.0 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.4.0 {test=[runtime(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.10 {optional=[compile(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-jcl;1.7.16 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-jcl;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.vault#spring-vault-core;1.1.2.RELEASE [compile→compile()]
loadData of org.springframework.vault#spring-vault-core;1.1.2.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.22.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.10.0 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.4.0 {test=[runtime(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.10 {optional=[compile(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-jcl;1.7.16 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-jcl;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.springframework.vault#spring-vault-core;1.1.2.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.22.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.10.0 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.4.0 {test=[runtime(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.10 {optional=[compile(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-jcl;1.7.16 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-jcl;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.22.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.10.0 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.4.0 {test=[runtime(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.10 {optional=[compile(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-jcl;1.7.16 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-jcl;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.22.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.10.0 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.4.0 {test=[runtime(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.10 {optional=[compile(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-jcl;1.7.16 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-jcl;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.22.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.10.0 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.4.0 {test=[runtime(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.10 {optional=[compile(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-jcl;1.7.16 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-jcl;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.22.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.10.0 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.4.0 {test=[runtime(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.10 {optional=[compile(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-jcl;1.7.16 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-jcl;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.vault#spring-vault-core;1.1.2.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.vault#spring-vault-core;1.1.2.RELEASE [compile→runtime()]
loadData of org.springframework.vault#spring-vault-core;1.1.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.vault#spring-vault-core;1.1.2.RELEASE [compile→compile]
loadData of org.springframework.vault#spring-vault-core;1.1.2.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in runtime
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in runtime
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in runtime
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.22.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.10.0 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.4.0 {test=[runtime(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.10 {optional=[compile(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-jcl;1.7.16 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-jcl;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.springframework.vault#spring-vault-core;1.1.2.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.vault#spring-vault-core;1.1.2.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [compile→default]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [compile→runtime]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.vault#spring-vault-core;1.1.2.RELEASE [runtime→runtime()]
loadData of org.springframework.vault#spring-vault-core;1.1.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.vault#spring-vault-core;1.1.2.RELEASE [runtime→compile]
loadData of org.springframework.vault#spring-vault-core;1.1.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [compile→master]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-vault-config-consul/ivy-1.1.1.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-vault-config-consul/ivy-1.1.1.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE
found org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE in jcenter
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-vault-config-databases/ivy-1.1.1.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-vault-config-databases/ivy-1.1.1.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE
found org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE in jcenter
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {test=[runtime(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.40 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {test=[runtime(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.40 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {test=[runtime(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.40 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {test=[runtime(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.40 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-vault-config-aws/ivy-1.1.1.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-vault-config-aws/ivy-1.1.1.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE
found org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE in jcenter
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-contract-stub-runner/ivy-1.2.5.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-contract-stub-runner/ivy-1.2.5.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE
found org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE in jcenter
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-contract-verifier/ivy-1.2.5.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-contract-verifier/ivy-1.2.5.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE
found org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-contract-spec/ivy-1.2.5.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-contract-spec/ivy-1.2.5.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE
found org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.codehaus.groovy#groovy;2.4.15 [compile→master()]
loadData of org.codehaus.groovy#groovy;2.4.15 of rootConf=default
using downloadGrapes to resolve org.codehaus.groovy#groovy;2.4.15
downloadGrapes: Checking cache for: dependency: org.codehaus.groovy#groovy;2.4.15 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.codehaus.groovy/groovy/ivy-2.4.15.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.codehaus.groovy#groovy;2.4.15 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.codehaus.groovy/groovy/ivy-2.4.15.xml
downloadGrapes: module revision found in cache: org.codehaus.groovy#groovy;2.4.15
found org.codehaus.groovy#groovy;2.4.15 in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.codehaus.groovy#groovy;2.4.15 [compile→compile()]
loadData of org.codehaus.groovy#groovy;2.4.15 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.codehaus.groovy#groovy-nio;2.4.15 [compile→master()]
loadData of org.codehaus.groovy#groovy-nio;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.codehaus.groovy#groovy-nio;2.4.15 [compile→compile()]
loadData of org.codehaus.groovy#groovy-nio;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.codehaus.groovy#groovy-json;2.4.15 [compile→master()]
loadData of org.codehaus.groovy#groovy-json;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.codehaus.groovy#groovy-json;2.4.15 [compile→compile()]
loadData of org.codehaus.groovy#groovy-json;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.codehaus.groovy#groovy-xml;2.4.15 [compile→master()]
loadData of org.codehaus.groovy#groovy-xml;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.codehaus.groovy#groovy-xml;2.4.15 [compile→compile()]
loadData of org.codehaus.groovy#groovy-xml;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→dk.brics.automaton#automaton;1.11-8 [compile→master()]
loadData of dk.brics.automaton#automaton;1.11-8 of rootConf=default
using downloadGrapes to resolve dk.brics.automaton#automaton;1.11-8
downloadGrapes: Checking cache for: dependency: dk.brics.automaton#automaton;1.11-8 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/dk.brics.automaton/automaton/ivy-1.11-8.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for dk.brics.automaton#automaton;1.11-8 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/dk.brics.automaton/automaton/ivy-1.11-8.xml
downloadGrapes: module revision found in cache: dk.brics.automaton#automaton;1.11-8
found dk.brics.automaton#automaton;1.11-8 in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→dk.brics.automaton#automaton;1.11-8 [compile→compile()]
loadData of dk.brics.automaton#automaton;1.11-8 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.apache.commons#commons-text;1.1 [compile→master()]
loadData of org.apache.commons#commons-text;1.1 of rootConf=default
using downloadGrapes to resolve org.apache.commons#commons-text;1.1
downloadGrapes: Checking cache for: dependency: org.apache.commons#commons-text;1.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.commons/commons-text/ivy-1.1.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.apache.commons#commons-text;1.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.commons/commons-text/ivy-1.1.xml
downloadGrapes: module revision found in cache: org.apache.commons#commons-text;1.1
found org.apache.commons#commons-text;1.1 in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.apache.commons#commons-text;1.1 [compile→compile()]
loadData of org.apache.commons#commons-text;1.1 of rootConf=default
== resolving dependencies org.apache.commons#commons-text;1.1→org.apache.commons#commons-lang3;3.5 [compile→master()]
loadData of org.apache.commons#commons-lang3;3.5 of rootConf=default
using downloadGrapes to resolve org.apache.commons#commons-lang3;3.5
downloadGrapes: Checking cache for: dependency: org.apache.commons#commons-lang3;3.5 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.commons/commons-lang3/ivy-3.5.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.apache.commons#commons-lang3;3.5 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.commons/commons-lang3/ivy-3.5.xml
downloadGrapes: module revision found in cache: org.apache.commons#commons-lang3;3.5
found org.apache.commons#commons-lang3;3.5 in localm2
== resolving dependencies org.apache.commons#commons-text;1.1→org.apache.commons#commons-lang3;3.5 [compile→compile()]
loadData of org.apache.commons#commons-lang3;3.5 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.slf4j#slf4j-api;1.7.25 [compile→master()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.codehaus.groovy#groovy;2.4.15 [runtime→runtime()]
loadData of org.codehaus.groovy#groovy;2.4.15 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.codehaus.groovy#groovy;2.4.15 [runtime→compile]
loadData of org.codehaus.groovy#groovy;2.4.15 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.codehaus.groovy#groovy-nio;2.4.15 [runtime→runtime()]
loadData of org.codehaus.groovy#groovy-nio;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.codehaus.groovy#groovy-json;2.4.15 [runtime→runtime()]
loadData of org.codehaus.groovy#groovy-json;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.codehaus.groovy#groovy-xml;2.4.15 [runtime→runtime()]
loadData of org.codehaus.groovy#groovy-xml;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→dk.brics.automaton#automaton;1.11-8 [runtime→runtime()]
loadData of dk.brics.automaton#automaton;1.11-8 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→dk.brics.automaton#automaton;1.11-8 [runtime→compile]
loadData of dk.brics.automaton#automaton;1.11-8 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.apache.commons#commons-text;1.1 [runtime→runtime()]
loadData of org.apache.commons#commons-text;1.1 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.apache.commons#commons-text;1.1 [runtime→compile]
loadData of org.apache.commons#commons-text;1.1 of rootConf=default
== resolving dependencies org.apache.commons#commons-text;1.1→org.apache.commons#commons-lang3;3.5 [runtime→runtime()]
loadData of org.apache.commons#commons-lang3;3.5 of rootConf=default
== resolving dependencies org.apache.commons#commons-text;1.1→org.apache.commons#commons-lang3;3.5 [runtime→compile]
loadData of org.apache.commons#commons-lang3;3.5 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-test-autoconfigure/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-test-autoconfigure/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE
found org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE→org.springframework.boot#spring-boot-test;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-test;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-test;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-test/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.boot#spring-boot-test;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-test/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-test;1.5.14.RELEASE
found org.springframework.boot#spring-boot-test;1.5.14.RELEASE in localm2
== resolving dependencies org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE→org.springframework.boot#spring-boot-test;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-test;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-test;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-test;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→master()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→javax.inject#javax.inject;1 [compile→master()]
loadData of javax.inject#javax.inject;1 of rootConf=default
using downloadGrapes to resolve javax.inject#javax.inject;1
downloadGrapes: Checking cache for: dependency: javax.inject#javax.inject;1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/javax.inject/javax.inject/ivy-1.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for javax.inject#javax.inject;1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/javax.inject/javax.inject/ivy-1.xml
downloadGrapes: module revision found in cache: javax.inject#javax.inject;1
found javax.inject#javax.inject;1 in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→javax.inject#javax.inject;1 [compile→compile()]
loadData of javax.inject#javax.inject;1 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.slf4j#slf4j-api;1.7.25 [compile→master()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.github.tomakehurst#wiremock-standalone;2.16.0 [compile→master()]
loadData of com.github.tomakehurst#wiremock-standalone;2.16.0 of rootConf=default
using downloadGrapes to resolve com.github.tomakehurst#wiremock-standalone;2.16.0
downloadGrapes: Checking cache for: dependency: com.github.tomakehurst#wiremock-standalone;2.16.0 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.github.tomakehurst/wiremock-standalone/ivy-2.16.0.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for com.github.tomakehurst#wiremock-standalone;2.16.0 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.github.tomakehurst/wiremock-standalone/ivy-2.16.0.xml
downloadGrapes: module revision found in cache: com.github.tomakehurst#wiremock-standalone;2.16.0
found com.github.tomakehurst#wiremock-standalone;2.16.0 in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.github.tomakehurst#wiremock-standalone;2.16.0 [compile→compile()]
loadData of com.github.tomakehurst#wiremock-standalone;2.16.0 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.toomuchcoding.jsonassert#jsonassert;0.4.12 [compile→master()]
loadData of com.toomuchcoding.jsonassert#jsonassert;0.4.12 of rootConf=default
using downloadGrapes to resolve com.toomuchcoding.jsonassert#jsonassert;0.4.12
downloadGrapes: Checking cache for: dependency: com.toomuchcoding.jsonassert#jsonassert;0.4.12 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.toomuchcoding.jsonassert/jsonassert/ivy-0.4.12.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for com.toomuchcoding.jsonassert#jsonassert;0.4.12 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.toomuchcoding.jsonassert/jsonassert/ivy-0.4.12.xml
downloadGrapes: module revision found in cache: com.toomuchcoding.jsonassert#jsonassert;0.4.12
found com.toomuchcoding.jsonassert#jsonassert;0.4.12 in localm2
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.toomuchcoding.jsonassert#jsonassert;0.4.12 [compile→compile()]
loadData of com.toomuchcoding.jsonassert#jsonassert;0.4.12 of rootConf=default
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies com.toomuchcoding.jsonassert#jsonassert;0.4.12→com.jayway.jsonpath#json-path;2.2.0 [compile→master()]
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
loadData of com.jayway.jsonpath#json-path;2.2.0 of rootConf=default
using downloadGrapes to resolve com.jayway.jsonpath#json-path;2.2.0
downloadGrapes: Checking cache for: dependency: com.jayway.jsonpath#json-path;2.2.0 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.jayway.jsonpath/json-path/ivy-2.2.0.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for com.jayway.jsonpath#json-path;2.2.0 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.jayway.jsonpath/json-path/ivy-2.2.0.xml
downloadGrapes: module revision found in cache: com.jayway.jsonpath#json-path;2.2.0
found com.jayway.jsonpath#json-path;2.2.0 in localm2
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.toomuchcoding.jsonassert#jsonassert;0.4.12→com.jayway.jsonpath#json-path;2.2.0 [compile→compile()]
loadData of com.jayway.jsonpath#json-path;2.2.0 of rootConf=default
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.jayway.jsonpath#json-path;2.2.0→net.minidev#json-smart;2.2.1 [compile→master()]
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
loadData of net.minidev#json-smart;2.2.1 of rootConf=default
using downloadGrapes to resolve net.minidev#json-smart;2.2.1
downloadGrapes: Checking cache for: dependency: net.minidev#json-smart;2.2.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/net.minidev/json-smart/ivy-2.2.1.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for net.minidev#json-smart;2.2.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/net.minidev/json-smart/ivy-2.2.1.xml
downloadGrapes: module revision found in cache: net.minidev#json-smart;2.2.1
found net.minidev#json-smart;2.2.1 in localm2
== resolving dependencies com.jayway.jsonpath#json-path;2.2.0→net.minidev#json-smart;2.2.1 [compile→compile()]
loadData of net.minidev#json-smart;2.2.1 of rootConf=default
== resolving dependencies net.minidev#json-smart;2.2.1→net.minidev#accessors-smart;1.1 [compile→master()]
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
loadData of net.minidev#accessors-smart;1.1 of rootConf=default
using downloadGrapes to resolve net.minidev#accessors-smart;1.1
downloadGrapes: Checking cache for: dependency: net.minidev#accessors-smart;1.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/net.minidev/accessors-smart/ivy-1.1.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for net.minidev#accessors-smart;1.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/net.minidev/accessors-smart/ivy-1.1.xml
downloadGrapes: module revision found in cache: net.minidev#accessors-smart;1.1
found net.minidev#accessors-smart;1.1 in localm2
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies net.minidev#json-smart;2.2.1→net.minidev#accessors-smart;1.1 [compile→compile()]
loadData of net.minidev#accessors-smart;1.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies net.minidev#accessors-smart;1.1→org.ow2.asm#asm;5.0.3 [compile→master()]
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
loadData of org.ow2.asm#asm;5.0.3 of rootConf=default
using downloadGrapes to resolve org.ow2.asm#asm;5.0.3
downloadGrapes: Checking cache for: dependency: org.ow2.asm#asm;5.0.3 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.ow2.asm/asm/ivy-5.0.3.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.ow2.asm#asm;5.0.3 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.ow2.asm/asm/ivy-5.0.3.xml
downloadGrapes: module revision found in cache: org.ow2.asm#asm;5.0.3
found org.ow2.asm#asm;5.0.3 in localm2
== resolving dependencies net.minidev#accessors-smart;1.1→org.ow2.asm#asm;5.0.3 [compile→compile()]
loadData of org.ow2.asm#asm;5.0.3 of rootConf=default
== resolving dependencies com.jayway.jsonpath#json-path;2.2.0→org.slf4j#slf4j-api;1.7.25 [compile→master()]
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.jayway.jsonpath#json-path;2.2.0→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.codehaus.groovy#groovy;2.4.15 [compile→master()]
loadData of org.codehaus.groovy#groovy;2.4.15 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.codehaus.groovy#groovy;2.4.15 [compile→compile()]
loadData of org.codehaus.groovy#groovy;2.4.15 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.codehaus.groovy#groovy-nio;2.4.15 [compile→master()]
loadData of org.codehaus.groovy#groovy-nio;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.codehaus.groovy#groovy-nio;2.4.15 [compile→compile()]
loadData of org.codehaus.groovy#groovy-nio;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.codehaus.groovy#groovy-json;2.4.15 [compile→master()]
loadData of org.codehaus.groovy#groovy-json;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.codehaus.groovy#groovy-json;2.4.15 [compile→compile()]
loadData of org.codehaus.groovy#groovy-json;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.codehaus.groovy#groovy-xml;2.4.15 [compile→master()]
loadData of org.codehaus.groovy#groovy-xml;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.codehaus.groovy#groovy-xml;2.4.15 [compile→compile()]
loadData of org.codehaus.groovy#groovy-xml;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.skyscreamer#jsonassert;1.4.0 [compile→master()]
loadData of org.skyscreamer#jsonassert;1.4.0 of rootConf=default
using downloadGrapes to resolve org.skyscreamer#jsonassert;1.4.0
downloadGrapes: Checking cache for: dependency: org.skyscreamer#jsonassert;1.4.0 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.skyscreamer/jsonassert/ivy-1.4.0.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.skyscreamer#jsonassert;1.4.0 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.skyscreamer/jsonassert/ivy-1.4.0.xml
downloadGrapes: module revision found in cache: org.skyscreamer#jsonassert;1.4.0
found org.skyscreamer#jsonassert;1.4.0 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.skyscreamer#jsonassert;1.4.0 [compile→compile()]
loadData of org.skyscreamer#jsonassert;1.4.0 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.skyscreamer#jsonassert;1.4.0→com.vaadin.external.google#android-json;0.0.20131108.vaadin1 [compile→master()]
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.vaadin.external.google#android-json;0.0.20131108.vaadin1 of rootConf=default
using downloadGrapes to resolve com.vaadin.external.google#android-json;0.0.20131108.vaadin1
downloadGrapes: Checking cache for: dependency: com.vaadin.external.google#android-json;0.0.20131108.vaadin1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.vaadin.external.google/android-json/ivy-0.0.20131108.vaadin1.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for com.vaadin.external.google#android-json;0.0.20131108.vaadin1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.vaadin.external.google/android-json/ivy-0.0.20131108.vaadin1.xml
downloadGrapes: module revision found in cache: com.vaadin.external.google#android-json;0.0.20131108.vaadin1
found com.vaadin.external.google#android-json;0.0.20131108.vaadin1 in localm2
== resolving dependencies org.skyscreamer#jsonassert;1.4.0→com.vaadin.external.google#android-json;0.0.20131108.vaadin1 [compile→compile()]
loadData of com.vaadin.external.google#android-json;0.0.20131108.vaadin1 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.github.jknack#handlebars;4.0.6 [compile→master()]
loadData of com.github.jknack#handlebars;4.0.6 of rootConf=default
using downloadGrapes to resolve com.github.jknack#handlebars;4.0.6
downloadGrapes: Checking cache for: dependency: com.github.jknack#handlebars;4.0.6 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.github.jknack/handlebars/ivy-4.0.6.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for com.github.jknack#handlebars;4.0.6 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.github.jknack/handlebars/ivy-4.0.6.xml
downloadGrapes: module revision found in cache: com.github.jknack#handlebars;4.0.6
found com.github.jknack#handlebars;4.0.6 in localm2
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.github.jknack#handlebars;4.0.6 [compile→compile()]
loadData of com.github.jknack#handlebars;4.0.6 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.apache.commons#commons-lang3;3.1 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
loadData of org.apache.commons#commons-lang3;3.1 of rootConf=default
default is evicted. Skip loading
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.apache.commons#commons-lang3;3.5 [compile→master()]
loadData of org.apache.commons#commons-lang3;3.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.apache.commons#commons-lang3;3.1 [compile→compile()]
loadData of org.apache.commons#commons-lang3;3.1 of rootConf=default
default is evicted. Skip loading
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.apache.commons#commons-lang3;3.5 [compile→compile()]
loadData of org.apache.commons#commons-lang3;3.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.antlr#antlr4-runtime;4.5.1-1 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
loadData of org.antlr#antlr4-runtime;4.5.1-1 of rootConf=default
using downloadGrapes to resolve org.antlr#antlr4-runtime;4.5.1-1
downloadGrapes: Checking cache for: dependency: org.antlr#antlr4-runtime;4.5.1-1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.antlr/antlr4-runtime/ivy-4.5.1-1.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.antlr#antlr4-runtime;4.5.1-1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.antlr/antlr4-runtime/ivy-4.5.1-1.xml
downloadGrapes: module revision found in cache: org.antlr#antlr4-runtime;4.5.1-1
found org.antlr#antlr4-runtime;4.5.1-1 in localm2
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.antlr#antlr4-runtime;4.5.1-1 [compile→compile()]
loadData of org.antlr#antlr4-runtime;4.5.1-1 of rootConf=default
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.mozilla#rhino;1.7R4 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
loadData of org.mozilla#rhino;1.7R4 of rootConf=default
using downloadGrapes to resolve org.mozilla#rhino;1.7R4
downloadGrapes: Checking cache for: dependency: org.mozilla#rhino;1.7R4 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.mozilla/rhino/ivy-1.7R4.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.mozilla#rhino;1.7R4 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.mozilla/rhino/ivy-1.7R4.xml
downloadGrapes: module revision found in cache: org.mozilla#rhino;1.7R4
found org.mozilla#rhino;1.7R4 in localm2
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.mozilla#rhino;1.7R4 [compile→compile()]
loadData of org.mozilla#rhino;1.7R4 of rootConf=default
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.slf4j#slf4j-api;1.7.25 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→commons-beanutils#commons-beanutils;1.9.3 [compile→master()]
loadData of commons-beanutils#commons-beanutils;1.9.3 of rootConf=default
using downloadGrapes to resolve commons-beanutils#commons-beanutils;1.9.3
downloadGrapes: Checking cache for: dependency: commons-beanutils#commons-beanutils;1.9.3 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/commons-beanutils/commons-beanutils/ivy-1.9.3.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for commons-beanutils#commons-beanutils;1.9.3 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/commons-beanutils/commons-beanutils/ivy-1.9.3.xml
downloadGrapes: module revision found in cache: commons-beanutils#commons-beanutils;1.9.3
found commons-beanutils#commons-beanutils;1.9.3 in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→commons-beanutils#commons-beanutils;1.9.3 [compile→compile()]
loadData of commons-beanutils#commons-beanutils;1.9.3 of rootConf=default
excluding dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} in compile
== resolving dependencies commons-beanutils#commons-beanutils;1.9.3→commons-collections#commons-collections;3.2.2 [compile→master()]
excluding dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} in compile
loadData of commons-collections#commons-collections;3.2.2 of rootConf=default
using downloadGrapes to resolve commons-collections#commons-collections;3.2.2
downloadGrapes: Checking cache for: dependency: commons-collections#commons-collections;3.2.2 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/commons-collections/commons-collections/ivy-3.2.2.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for commons-collections#commons-collections;3.2.2 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/commons-collections/commons-collections/ivy-3.2.2.xml
downloadGrapes: module revision found in cache: commons-collections#commons-collections;3.2.2
found commons-collections#commons-collections;3.2.2 in localm2
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies commons-beanutils#commons-beanutils;1.9.3→commons-collections#commons-collections;3.2.2 [compile→compile()]
loadData of commons-collections#commons-collections;3.2.2 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.yaml#snakeyaml;1.17 [compile→master()]
loadData of org.yaml#snakeyaml;1.17 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.yaml#snakeyaml;1.17 [compile→compile()]
loadData of org.yaml#snakeyaml;1.17 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-test/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-test/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
found org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework.boot#spring-boot-test;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-test;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework.boot#spring-boot-test;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-test;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→com.jayway.jsonpath#json-path;2.2.0 [compile→master()]
loadData of com.jayway.jsonpath#json-path;2.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→com.jayway.jsonpath#json-path;2.2.0 [compile→compile()]
loadData of com.jayway.jsonpath#json-path;2.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→junit#junit;4.12 [compile→master()]
loadData of junit#junit;4.12 of rootConf=default
using downloadGrapes to resolve junit#junit;4.12
downloadGrapes: Checking cache for: dependency: junit#junit;4.12 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/junit/junit/ivy-4.12.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for junit#junit;4.12 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/junit/junit/ivy-4.12.xml
downloadGrapes: module revision found in cache: junit#junit;4.12
found junit#junit;4.12 in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→junit#junit;4.12 [compile→compile()]
loadData of junit#junit;4.12 of rootConf=default
== resolving dependencies junit#junit;4.12→org.hamcrest#hamcrest-core;1.3 [compile→master()]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
using downloadGrapes to resolve org.hamcrest#hamcrest-core;1.3
downloadGrapes: Checking cache for: dependency: org.hamcrest#hamcrest-core;1.3 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.hamcrest/hamcrest-core/ivy-1.3.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.hamcrest#hamcrest-core;1.3 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.hamcrest/hamcrest-core/ivy-1.3.xml
downloadGrapes: module revision found in cache: org.hamcrest#hamcrest-core;1.3
found org.hamcrest#hamcrest-core;1.3 in localm2
== resolving dependencies junit#junit;4.12→org.hamcrest#hamcrest-core;1.3 [compile→compile()]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→junit#junit;4.12 [compile→runtime()]
loadData of junit#junit;4.12 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→junit#junit;4.12 [compile→compile]
loadData of junit#junit;4.12 of rootConf=default
== resolving dependencies junit#junit;4.12→org.hamcrest#hamcrest-core;1.3 [runtime→runtime()]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
== resolving dependencies junit#junit;4.12→org.hamcrest#hamcrest-core;1.3 [runtime→compile]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.assertj#assertj-core;2.6.0 [compile→master()]
loadData of org.assertj#assertj-core;2.6.0 of rootConf=default
using downloadGrapes to resolve org.assertj#assertj-core;2.6.0
downloadGrapes: Checking cache for: dependency: org.assertj#assertj-core;2.6.0 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.assertj/assertj-core/ivy-2.6.0.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.assertj#assertj-core;2.6.0 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.assertj/assertj-core/ivy-2.6.0.xml
downloadGrapes: module revision found in cache: org.assertj#assertj-core;2.6.0
found org.assertj#assertj-core;2.6.0 in localm2
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.2.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.assertj#assertj-core;2.6.0 [compile→compile()]
loadData of org.assertj#assertj-core;2.6.0 of rootConf=default
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.2.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.mockito#mockito-core;1.10.19 [compile→master()]
loadData of org.mockito#mockito-core;1.10.19 of rootConf=default
using downloadGrapes to resolve org.mockito#mockito-core;1.10.19
downloadGrapes: Checking cache for: dependency: org.mockito#mockito-core;1.10.19 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.mockito/mockito-core/ivy-1.10.19.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.mockito#mockito-core;1.10.19 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.mockito/mockito-core/ivy-1.10.19.xml
downloadGrapes: module revision found in cache: org.mockito#mockito-core;1.10.19
found org.mockito#mockito-core;1.10.19 in localm2
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.mockito#mockito-core;1.10.19 [compile→compile()]
loadData of org.mockito#mockito-core;1.10.19 of rootConf=default
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.hamcrest#hamcrest-core;1.3 [compile→master()]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.hamcrest#hamcrest-core;1.3 [compile→compile()]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.hamcrest#hamcrest-library;1.3 [compile→master()]
loadData of org.hamcrest#hamcrest-library;1.3 of rootConf=default
using downloadGrapes to resolve org.hamcrest#hamcrest-library;1.3
downloadGrapes: Checking cache for: dependency: org.hamcrest#hamcrest-library;1.3 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.hamcrest/hamcrest-library/ivy-1.3.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.hamcrest#hamcrest-library;1.3 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.hamcrest/hamcrest-library/ivy-1.3.xml
downloadGrapes: module revision found in cache: org.hamcrest#hamcrest-library;1.3
found org.hamcrest#hamcrest-library;1.3 in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.hamcrest#hamcrest-library;1.3 [compile→compile()]
loadData of org.hamcrest#hamcrest-library;1.3 of rootConf=default
== resolving dependencies org.hamcrest#hamcrest-library;1.3→org.hamcrest#hamcrest-core;1.3 [compile→master()]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.hamcrest#hamcrest-library;1.3→org.hamcrest#hamcrest-core;1.3 [compile→compile()]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.skyscreamer#jsonassert;1.4.0 [compile→master()]
loadData of org.skyscreamer#jsonassert;1.4.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.skyscreamer#jsonassert;1.4.0 [compile→compile()]
loadData of org.skyscreamer#jsonassert;1.4.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework#spring-test;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-test;4.3.18.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework#spring-test;4.3.18.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework#spring-test;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-test/ivy-4.3.18.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework#spring-test;4.3.18.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-test/ivy-4.3.18.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework#spring-test;4.3.18.RELEASE
found org.springframework#spring-test;4.3.18.RELEASE in localm2
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.3.0 {optional=[compile(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sourceforge.htmlunit#htmlunit;2.23 {optional=[compile(), master()]} ⇒ dependency: net.sourceforge.htmlunit#htmlunit;2.21 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.seleniumhq.selenium#htmlunit-driver;2.23.2 {optional=[compile(), master()]} ⇒ dependency: org.seleniumhq.selenium#htmlunit-driver;2.21 {optional=[compile(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework#spring-test;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-test;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.3.0 {optional=[compile(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sourceforge.htmlunit#htmlunit;2.23 {optional=[compile(), master()]} ⇒ dependency: net.sourceforge.htmlunit#htmlunit;2.21 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.seleniumhq.selenium#htmlunit-driver;2.23.2 {optional=[compile(), master()]} ⇒ dependency: org.seleniumhq.selenium#htmlunit-driver;2.21 {optional=[compile(), master()]}
== resolving dependencies org.springframework#spring-test;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.3.0 {optional=[compile(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sourceforge.htmlunit#htmlunit;2.23 {optional=[compile(), master()]} ⇒ dependency: net.sourceforge.htmlunit#htmlunit;2.21 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.seleniumhq.selenium#htmlunit-driver;2.23.2 {optional=[compile(), master()]} ⇒ dependency: org.seleniumhq.selenium#htmlunit-driver;2.21 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.3.0 {optional=[compile(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sourceforge.htmlunit#htmlunit;2.23 {optional=[compile(), master()]} ⇒ dependency: net.sourceforge.htmlunit#htmlunit;2.21 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.seleniumhq.selenium#htmlunit-driver;2.23.2 {optional=[compile(), master()]} ⇒ dependency: org.seleniumhq.selenium#htmlunit-driver;2.21 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.3.0 {optional=[compile(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sourceforge.htmlunit#htmlunit;2.23 {optional=[compile(), master()]} ⇒ dependency: net.sourceforge.htmlunit#htmlunit;2.21 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.seleniumhq.selenium#htmlunit-driver;2.23.2 {optional=[compile(), master()]} ⇒ dependency: org.seleniumhq.selenium#htmlunit-driver;2.21 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.3.0 {optional=[compile(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sourceforge.htmlunit#htmlunit;2.23 {optional=[compile(), master()]} ⇒ dependency: net.sourceforge.htmlunit#htmlunit;2.21 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.seleniumhq.selenium#htmlunit-driver;2.23.2 {optional=[compile(), master()]} ⇒ dependency: org.seleniumhq.selenium#htmlunit-driver;2.21 {optional=[compile(), master()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-test;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE→org.springframework.boot#spring-boot-test;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-test;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE→org.springframework.boot#spring-boot-test;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-test;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-test;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-test;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→javax.inject#javax.inject;1 [runtime→runtime()]
loadData of javax.inject#javax.inject;1 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→javax.inject#javax.inject;1 [runtime→compile]
loadData of javax.inject#javax.inject;1 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.github.tomakehurst#wiremock-standalone;2.16.0 [runtime→runtime()]
loadData of com.github.tomakehurst#wiremock-standalone;2.16.0 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.github.tomakehurst#wiremock-standalone;2.16.0 [runtime→compile]
loadData of com.github.tomakehurst#wiremock-standalone;2.16.0 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.toomuchcoding.jsonassert#jsonassert;0.4.12 [runtime→runtime()]
loadData of com.toomuchcoding.jsonassert#jsonassert;0.4.12 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.toomuchcoding.jsonassert#jsonassert;0.4.12 [runtime→compile]
loadData of com.toomuchcoding.jsonassert#jsonassert;0.4.12 of rootConf=default
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies com.toomuchcoding.jsonassert#jsonassert;0.4.12→com.jayway.jsonpath#json-path;2.2.0 [runtime→runtime()]
loadData of com.jayway.jsonpath#json-path;2.2.0 of rootConf=default
== resolving dependencies com.toomuchcoding.jsonassert#jsonassert;0.4.12→com.jayway.jsonpath#json-path;2.2.0 [runtime→compile]
loadData of com.jayway.jsonpath#json-path;2.2.0 of rootConf=default
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.jayway.jsonpath#json-path;2.2.0→net.minidev#json-smart;2.2.1 [runtime→runtime()]
loadData of net.minidev#json-smart;2.2.1 of rootConf=default
== resolving dependencies com.jayway.jsonpath#json-path;2.2.0→net.minidev#json-smart;2.2.1 [runtime→compile]
loadData of net.minidev#json-smart;2.2.1 of rootConf=default
== resolving dependencies net.minidev#json-smart;2.2.1→net.minidev#accessors-smart;1.1 [runtime→runtime()]
loadData of net.minidev#accessors-smart;1.1 of rootConf=default
== resolving dependencies net.minidev#json-smart;2.2.1→net.minidev#accessors-smart;1.1 [runtime→compile]
loadData of net.minidev#accessors-smart;1.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies net.minidev#accessors-smart;1.1→org.ow2.asm#asm;5.0.3 [runtime→runtime()]
loadData of org.ow2.asm#asm;5.0.3 of rootConf=default
== resolving dependencies net.minidev#accessors-smart;1.1→org.ow2.asm#asm;5.0.3 [runtime→compile]
loadData of org.ow2.asm#asm;5.0.3 of rootConf=default
== resolving dependencies com.jayway.jsonpath#json-path;2.2.0→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.jayway.jsonpath#json-path;2.2.0→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.codehaus.groovy#groovy;2.4.15 [runtime→runtime()]
loadData of org.codehaus.groovy#groovy;2.4.15 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.codehaus.groovy#groovy;2.4.15 [runtime→compile]
loadData of org.codehaus.groovy#groovy;2.4.15 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.codehaus.groovy#groovy-nio;2.4.15 [runtime→runtime()]
loadData of org.codehaus.groovy#groovy-nio;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.codehaus.groovy#groovy-json;2.4.15 [runtime→runtime()]
loadData of org.codehaus.groovy#groovy-json;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.codehaus.groovy#groovy-xml;2.4.15 [runtime→runtime()]
loadData of org.codehaus.groovy#groovy-xml;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.skyscreamer#jsonassert;1.4.0 [runtime→runtime()]
loadData of org.skyscreamer#jsonassert;1.4.0 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.skyscreamer#jsonassert;1.4.0 [runtime→compile]
loadData of org.skyscreamer#jsonassert;1.4.0 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.skyscreamer#jsonassert;1.4.0→com.vaadin.external.google#android-json;0.0.20131108.vaadin1 [runtime→runtime()]
loadData of com.vaadin.external.google#android-json;0.0.20131108.vaadin1 of rootConf=default
== resolving dependencies org.skyscreamer#jsonassert;1.4.0→com.vaadin.external.google#android-json;0.0.20131108.vaadin1 [runtime→compile]
loadData of com.vaadin.external.google#android-json;0.0.20131108.vaadin1 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.github.jknack#handlebars;4.0.6 [runtime→runtime()]
loadData of com.github.jknack#handlebars;4.0.6 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.github.jknack#handlebars;4.0.6 [runtime→compile]
loadData of com.github.jknack#handlebars;4.0.6 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.apache.commons#commons-lang3;3.1 [runtime→runtime()]
loadData of org.apache.commons#commons-lang3;3.1 of rootConf=default
default is evicted. Skip loading
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.apache.commons#commons-lang3;3.5 [runtime→runtime()]
loadData of org.apache.commons#commons-lang3;3.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.apache.commons#commons-lang3;3.5 [runtime→compile]
loadData of org.apache.commons#commons-lang3;3.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.antlr#antlr4-runtime;4.5.1-1 [runtime→runtime()]
loadData of org.antlr#antlr4-runtime;4.5.1-1 of rootConf=default
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.antlr#antlr4-runtime;4.5.1-1 [runtime→compile]
loadData of org.antlr#antlr4-runtime;4.5.1-1 of rootConf=default
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.mozilla#rhino;1.7R4 [runtime→runtime()]
loadData of org.mozilla#rhino;1.7R4 of rootConf=default
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.mozilla#rhino;1.7R4 [runtime→compile]
loadData of org.mozilla#rhino;1.7R4 of rootConf=default
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→commons-beanutils#commons-beanutils;1.9.3 [runtime→runtime()]
loadData of commons-beanutils#commons-beanutils;1.9.3 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→commons-beanutils#commons-beanutils;1.9.3 [runtime→compile]
loadData of commons-beanutils#commons-beanutils;1.9.3 of rootConf=default
excluding dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} in runtime
== resolving dependencies commons-beanutils#commons-beanutils;1.9.3→commons-collections#commons-collections;3.2.2 [runtime→runtime()]
loadData of commons-collections#commons-collections;3.2.2 of rootConf=default
== resolving dependencies commons-beanutils#commons-beanutils;1.9.3→commons-collections#commons-collections;3.2.2 [runtime→compile]
loadData of commons-collections#commons-collections;3.2.2 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.yaml#snakeyaml;1.17 [runtime→runtime()]
loadData of org.yaml#snakeyaml;1.17 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.yaml#snakeyaml;1.17 [runtime→compile]
loadData of org.yaml#snakeyaml;1.17 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework.boot#spring-boot-test;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-test;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework.boot#spring-boot-test;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-test;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→com.jayway.jsonpath#json-path;2.2.0 [runtime→runtime()]
loadData of com.jayway.jsonpath#json-path;2.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→com.jayway.jsonpath#json-path;2.2.0 [runtime→compile]
loadData of com.jayway.jsonpath#json-path;2.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→junit#junit;4.12 [runtime→runtime()]
loadData of junit#junit;4.12 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→junit#junit;4.12 [runtime→compile]
loadData of junit#junit;4.12 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.assertj#assertj-core;2.6.0 [runtime→runtime()]
loadData of org.assertj#assertj-core;2.6.0 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.assertj#assertj-core;2.6.0 [runtime→compile]
loadData of org.assertj#assertj-core;2.6.0 of rootConf=default
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.2.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.mockito#mockito-core;1.10.19 [runtime→runtime()]
loadData of org.mockito#mockito-core;1.10.19 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.mockito#mockito-core;1.10.19 [runtime→compile]
loadData of org.mockito#mockito-core;1.10.19 of rootConf=default
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.mockito#mockito-core;1.10.19→org.hamcrest#hamcrest-core;1.3 [runtime→master()]
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.mockito#mockito-core;1.10.19→org.hamcrest#hamcrest-core;1.3 [runtime→runtime()]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.mockito#mockito-core;1.10.19→org.hamcrest#hamcrest-core;1.3 [runtime→compile]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.mockito#mockito-core;1.10.19→org.hamcrest#hamcrest-core;1.3 [runtime→compile()]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.mockito#mockito-core;1.10.19→org.objenesis#objenesis;2.1 [runtime→master()]
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
loadData of org.objenesis#objenesis;2.1 of rootConf=default
using downloadGrapes to resolve org.objenesis#objenesis;2.1
downloadGrapes: Checking cache for: dependency: org.objenesis#objenesis;2.1 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.objenesis/objenesis/ivy-2.1.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.objenesis#objenesis;2.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.objenesis/objenesis/ivy-2.1.xml
downloadGrapes: module revision found in cache: org.objenesis#objenesis;2.1
found org.objenesis#objenesis;2.1 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.mockito#mockito-core;1.10.19→org.objenesis#objenesis;2.1 [runtime→runtime()]
loadData of org.objenesis#objenesis;2.1 of rootConf=default
== resolving dependencies org.mockito#mockito-core;1.10.19→org.objenesis#objenesis;2.1 [runtime→compile]
loadData of org.objenesis#objenesis;2.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.mockito#mockito-core;1.10.19→org.objenesis#objenesis;2.1 [runtime→compile()]
loadData of org.objenesis#objenesis;2.1 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.hamcrest#hamcrest-core;1.3 [runtime→runtime()]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.hamcrest#hamcrest-core;1.3 [runtime→compile]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.hamcrest#hamcrest-library;1.3 [runtime→runtime()]
loadData of org.hamcrest#hamcrest-library;1.3 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.hamcrest#hamcrest-library;1.3 [runtime→compile]
loadData of org.hamcrest#hamcrest-library;1.3 of rootConf=default
== resolving dependencies org.hamcrest#hamcrest-library;1.3→org.hamcrest#hamcrest-core;1.3 [runtime→runtime()]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.hamcrest#hamcrest-library;1.3→org.hamcrest#hamcrest-core;1.3 [runtime→compile]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.skyscreamer#jsonassert;1.4.0 [runtime→runtime()]
loadData of org.skyscreamer#jsonassert;1.4.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.skyscreamer#jsonassert;1.4.0 [runtime→compile]
loadData of org.skyscreamer#jsonassert;1.4.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework#spring-test;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-test;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework#spring-test;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-test;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.3.0 {optional=[compile(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sourceforge.htmlunit#htmlunit;2.23 {optional=[compile(), master()]} ⇒ dependency: net.sourceforge.htmlunit#htmlunit;2.21 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.seleniumhq.selenium#htmlunit-driver;2.23.2 {optional=[compile(), master()]} ⇒ dependency: org.seleniumhq.selenium#htmlunit-driver;2.21 {optional=[compile(), master()]}
== resolving dependencies org.springframework#spring-test;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-test;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-contract-shade/ivy-1.2.5.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-contract-shade/ivy-1.2.5.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE
found org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→junit#junit;4.12 [compile→master()]
loadData of junit#junit;4.12 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→junit#junit;4.12 [compile→compile()]
loadData of junit#junit;4.12 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→junit#junit;4.12 [runtime→runtime()]
loadData of junit#junit;4.12 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→junit#junit;4.12 [runtime→compile]
loadData of junit#junit;4.12 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-cloudfoundry-discovery/ivy-1.1.2.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-cloudfoundry-discovery/ivy-1.1.2.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE
found org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE in jcenter
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE→org.cloudfoundry#cloudfoundry-client-lib;1.1.3 [compile→master()]
loadData of org.cloudfoundry#cloudfoundry-client-lib;1.1.3 of rootConf=default
using downloadGrapes to resolve org.cloudfoundry#cloudfoundry-client-lib;1.1.3
downloadGrapes: Checking cache for: dependency: org.cloudfoundry#cloudfoundry-client-lib;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.cloudfoundry/cloudfoundry-client-lib/ivy-1.1.3.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.cloudfoundry#cloudfoundry-client-lib;1.1.3 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.cloudfoundry/cloudfoundry-client-lib/ivy-1.1.3.xml
downloadGrapes: module revision found in cache: org.cloudfoundry#cloudfoundry-client-lib;1.1.3
found org.cloudfoundry#cloudfoundry-client-lib;1.1.3 in localm2
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE→org.cloudfoundry#cloudfoundry-client-lib;1.1.3 [compile→compile()]
loadData of org.cloudfoundry#cloudfoundry-client-lib;1.1.3 of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.springframework#spring-webmvc;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.springframework#spring-webmvc;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.springframework#spring-webmvc;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-webmvc;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.security.oauth/spring-security-oauth2/ivy-2.0.15.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.security.oauth/spring-security-oauth2/ivy-2.0.15.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE
found org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE in localm2
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE [compile→compile()]
loadData of org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-webmvc;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
loadData of org.springframework#spring-webmvc;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-webmvc;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-webmvc;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework.security#spring-security-core;4.2.7.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.springframework.security#spring-security-core;4.2.7.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.security#spring-security-core;4.2.7.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.security/spring-security-core/ivy-4.2.7.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.security#spring-security-core;4.2.7.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.security/spring-security-core/ivy-4.2.7.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.security#spring-security-core;4.2.7.RELEASE
found org.springframework.security#spring-security-core;4.2.7.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework.security#spring-security-core;4.2.7.RELEASE [compile→compile()]
loadData of org.springframework.security#spring-security-core;4.2.7.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→aopalliance#aopalliance;1.0 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of aopalliance#aopalliance;1.0 of rootConf=default
using downloadGrapes to resolve aopalliance#aopalliance;1.0
downloadGrapes: Checking cache for: dependency: aopalliance#aopalliance;1.0 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/aopalliance/aopalliance/ivy-1.0.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for aopalliance#aopalliance;1.0 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/aopalliance/aopalliance/ivy-1.0.xml
downloadGrapes: module revision found in cache: aopalliance#aopalliance;1.0
found aopalliance#aopalliance;1.0 in localm2
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→aopalliance#aopalliance;1.0 [compile→compile()]
loadData of aopalliance#aopalliance;1.0 of rootConf=default
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework.security#spring-security-config;4.2.7.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.springframework.security#spring-security-config;4.2.7.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.security#spring-security-config;4.2.7.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.security/spring-security-config/ivy-4.2.7.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.security#spring-security-config;4.2.7.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.security/spring-security-config/ivy-4.2.7.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.security#spring-security-config;4.2.7.RELEASE
found org.springframework.security#spring-security-config;4.2.7.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework.security#spring-security-config;4.2.7.RELEASE [compile→compile()]
loadData of org.springframework.security#spring-security-config;4.2.7.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→aopalliance#aopalliance;1.0 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of aopalliance#aopalliance;1.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→aopalliance#aopalliance;1.0 [compile→compile()]
loadData of aopalliance#aopalliance;1.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework.security#spring-security-core;4.2.7.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework.security#spring-security-core;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework.security#spring-security-core;4.2.7.RELEASE [compile→compile()]
loadData of org.springframework.security#spring-security-core;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework.security#spring-security-web;4.2.7.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.springframework.security#spring-security-web;4.2.7.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.security#spring-security-web;4.2.7.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.security/spring-security-web/ivy-4.2.7.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.security#spring-security-web;4.2.7.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.security/spring-security-web/ivy-4.2.7.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.security#spring-security-web;4.2.7.RELEASE
found org.springframework.security#spring-security-web;4.2.7.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework.security#spring-security-web;4.2.7.RELEASE [compile→compile()]
loadData of org.springframework.security#spring-security-web;4.2.7.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→aopalliance#aopalliance;1.0 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of aopalliance#aopalliance;1.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→aopalliance#aopalliance;1.0 [compile→compile()]
loadData of aopalliance#aopalliance;1.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework.security#spring-security-core;4.2.7.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework.security#spring-security-core;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework.security#spring-security-core;4.2.7.RELEASE [compile→compile()]
loadData of org.springframework.security#spring-security-core;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→commons-codec#commons-codec;1.10 [compile→master()]
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of commons-codec#commons-codec;1.10 of rootConf=default
using downloadGrapes to resolve commons-codec#commons-codec;1.10
downloadGrapes: Checking cache for: dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/commons-codec/commons-codec/ivy-1.10.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for commons-codec#commons-codec;1.10 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/commons-codec/commons-codec/ivy-1.10.xml
downloadGrapes: module revision found in cache: commons-codec#commons-codec;1.10
found commons-codec#commons-codec;1.10 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→commons-codec#commons-codec;1.10 [compile→compile()]
loadData of commons-codec#commons-codec;1.10 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.codehaus.jackson#jackson-mapper-asl;1.9.13 [compile→master()]
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.13 of rootConf=default
using downloadGrapes to resolve org.codehaus.jackson#jackson-mapper-asl;1.9.13
downloadGrapes: Checking cache for: dependency: org.codehaus.jackson#jackson-mapper-asl;1.9.13 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.codehaus.jackson/jackson-mapper-asl/ivy-1.9.13.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.codehaus.jackson#jackson-mapper-asl;1.9.13 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.codehaus.jackson/jackson-mapper-asl/ivy-1.9.13.xml
downloadGrapes: module revision found in cache: org.codehaus.jackson#jackson-mapper-asl;1.9.13
found org.codehaus.jackson#jackson-mapper-asl;1.9.13 in localm2
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.codehaus.jackson#jackson-mapper-asl;1.9.13 [compile→compile()]
loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.13 of rootConf=default
== resolving dependencies org.codehaus.jackson#jackson-mapper-asl;1.9.13→org.codehaus.jackson#jackson-core-asl;1.9.13 [compile→master()]
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.codehaus.jackson#jackson-core-asl;1.9.13 of rootConf=default
using downloadGrapes to resolve org.codehaus.jackson#jackson-core-asl;1.9.13
downloadGrapes: Checking cache for: dependency: org.codehaus.jackson#jackson-core-asl;1.9.13 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.codehaus.jackson/jackson-core-asl/ivy-1.9.13.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.codehaus.jackson#jackson-core-asl;1.9.13 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.codehaus.jackson/jackson-core-asl/ivy-1.9.13.xml
downloadGrapes: module revision found in cache: org.codehaus.jackson#jackson-core-asl;1.9.13
found org.codehaus.jackson#jackson-core-asl;1.9.13 in localm2
== resolving dependencies org.codehaus.jackson#jackson-mapper-asl;1.9.13→org.codehaus.jackson#jackson-core-asl;1.9.13 [compile→compile()]
loadData of org.codehaus.jackson#jackson-core-asl;1.9.13 of rootConf=default
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.apache.httpcomponents#httpclient;4.5.5 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
using downloadGrapes to resolve org.apache.httpcomponents#httpclient;4.5.5
downloadGrapes: Checking cache for: dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.httpcomponents/httpclient/ivy-4.5.5.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.apache.httpcomponents#httpclient;4.5.5 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.httpcomponents/httpclient/ivy-4.5.5.xml
downloadGrapes: module revision found in cache: org.apache.httpcomponents#httpclient;4.5.5
found org.apache.httpcomponents#httpclient;4.5.5 in localm2
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.apache.httpcomponents#httpclient;4.5.5 [compile→compile()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→org.apache.httpcomponents#httpcore;4.4.9 [compile→master()]
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
using downloadGrapes to resolve org.apache.httpcomponents#httpcore;4.4.9
downloadGrapes: Checking cache for: dependency: org.apache.httpcomponents#httpcore;4.4.9 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.httpcomponents/httpcore/ivy-4.4.9.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.apache.httpcomponents#httpcore;4.4.9 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.httpcomponents/httpcore/ivy-4.4.9.xml
downloadGrapes: module revision found in cache: org.apache.httpcomponents#httpcore;4.4.9
found org.apache.httpcomponents#httpcore;4.4.9 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.12 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {test=[runtime(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {test=[runtime(), master()]}
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→org.apache.httpcomponents#httpcore;4.4.9 [compile→compile()]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.12 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {test=[runtime(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {test=[runtime(), master()]}
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→commons-logging#commons-logging;1.1.3 [compile→master()]
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of commons-logging#commons-logging;1.1.3 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→commons-logging#commons-logging;1.2 [compile→master()]
loadData of commons-logging#commons-logging;1.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→commons-logging#commons-logging;1.1.3 [compile→compile()]
loadData of commons-logging#commons-logging;1.1.3 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→commons-logging#commons-logging;1.2 [compile→compile()]
loadData of commons-logging#commons-logging;1.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→commons-codec#commons-codec;1.10 [compile→master()]
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of commons-codec#commons-codec;1.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→commons-codec#commons-codec;1.10 [compile→compile()]
loadData of commons-codec#commons-codec;1.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→commons-io#commons-io;2.1 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of commons-io#commons-io;2.1 of rootConf=default
using downloadGrapes to resolve commons-io#commons-io;2.1
downloadGrapes: Checking cache for: dependency: commons-io#commons-io;2.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/commons-io/commons-io/ivy-2.1.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for commons-io#commons-io;2.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/commons-io/commons-io/ivy-2.1.xml
downloadGrapes: module revision found in cache: commons-io#commons-io;2.1
found commons-io#commons-io;2.1 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→commons-io#commons-io;2.1 [compile→compile()]
loadData of commons-io#commons-io;2.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.esotericsoftware.yamlbeans#yamlbeans;1.06 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of com.esotericsoftware.yamlbeans#yamlbeans;1.06 of rootConf=default
using downloadGrapes to resolve com.esotericsoftware.yamlbeans#yamlbeans;1.06
downloadGrapes: Checking cache for: dependency: com.esotericsoftware.yamlbeans#yamlbeans;1.06 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.esotericsoftware.yamlbeans/yamlbeans/ivy-1.06.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for com.esotericsoftware.yamlbeans#yamlbeans;1.06 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.esotericsoftware.yamlbeans/yamlbeans/ivy-1.06.xml
downloadGrapes: module revision found in cache: com.esotericsoftware.yamlbeans#yamlbeans;1.06
found com.esotericsoftware.yamlbeans#yamlbeans;1.06 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.esotericsoftware.yamlbeans#yamlbeans;1.06 [compile→compile()]
loadData of com.esotericsoftware.yamlbeans#yamlbeans;1.06 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.fasterxml.jackson.core#jackson-core;2.8.11 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.fasterxml.jackson.core#jackson-core;2.8.11 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 [compile→compile()]
loadData of org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.apache.tomcat#tomcat-juli;8.0.15 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.apache.tomcat#tomcat-juli;8.0.15 of rootConf=default
using downloadGrapes to resolve org.apache.tomcat#tomcat-juli;8.0.15
downloadGrapes: Checking cache for: dependency: org.apache.tomcat#tomcat-juli;8.0.15 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.tomcat/tomcat-juli/ivy-8.0.15.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.apache.tomcat#tomcat-juli;8.0.15 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.tomcat/tomcat-juli/ivy-8.0.15.xml
downloadGrapes: module revision found in cache: org.apache.tomcat#tomcat-juli;8.0.15
found org.apache.tomcat#tomcat-juli;8.0.15 in localm2
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.apache.tomcat#tomcat-juli;8.0.15 [compile→compile()]
loadData of org.apache.tomcat#tomcat-juli;8.0.15 of rootConf=default
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.google.protobuf#protobuf-java;2.6.1 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of com.google.protobuf#protobuf-java;2.6.1 of rootConf=default
using downloadGrapes to resolve com.google.protobuf#protobuf-java;2.6.1
downloadGrapes: Checking cache for: dependency: com.google.protobuf#protobuf-java;2.6.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.google.protobuf/protobuf-java/ivy-2.6.1.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for com.google.protobuf#protobuf-java;2.6.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.google.protobuf/protobuf-java/ivy-2.6.1.xml
downloadGrapes: module revision found in cache: com.google.protobuf#protobuf-java;2.6.1
found com.google.protobuf#protobuf-java;2.6.1 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.4 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.google.protobuf#protobuf-java;2.6.1 [compile→compile()]
loadData of com.google.protobuf#protobuf-java;2.6.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.4 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE→org.cloudfoundry#cloudfoundry-client-lib;1.1.3 [compile→runtime()]
loadData of org.cloudfoundry#cloudfoundry-client-lib;1.1.3 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE→org.cloudfoundry#cloudfoundry-client-lib;1.1.3 [compile→compile]
loadData of org.cloudfoundry#cloudfoundry-client-lib;1.1.3 of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.springframework#spring-webmvc;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-webmvc;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.springframework#spring-webmvc;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-webmvc;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE [runtime→runtime()]
loadData of org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE of rootConf=default
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE [runtime→compile]
loadData of org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-webmvc;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-webmvc;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-webmvc;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-webmvc;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework.security#spring-security-core;4.2.7.RELEASE [runtime→runtime()]
loadData of org.springframework.security#spring-security-core;4.2.7.RELEASE of rootConf=default
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework.security#spring-security-core;4.2.7.RELEASE [runtime→compile]
loadData of org.springframework.security#spring-security-core;4.2.7.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→aopalliance#aopalliance;1.0 [runtime→runtime()]
loadData of aopalliance#aopalliance;1.0 of rootConf=default
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→aopalliance#aopalliance;1.0 [runtime→compile]
loadData of aopalliance#aopalliance;1.0 of rootConf=default
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework.security#spring-security-config;4.2.7.RELEASE [runtime→runtime()]
loadData of org.springframework.security#spring-security-config;4.2.7.RELEASE of rootConf=default
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework.security#spring-security-config;4.2.7.RELEASE [runtime→compile]
loadData of org.springframework.security#spring-security-config;4.2.7.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→aopalliance#aopalliance;1.0 [runtime→runtime()]
loadData of aopalliance#aopalliance;1.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→aopalliance#aopalliance;1.0 [runtime→compile]
loadData of aopalliance#aopalliance;1.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework.security#spring-security-core;4.2.7.RELEASE [runtime→runtime()]
loadData of org.springframework.security#spring-security-core;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework.security#spring-security-core;4.2.7.RELEASE [runtime→compile]
loadData of org.springframework.security#spring-security-core;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework.security#spring-security-web;4.2.7.RELEASE [runtime→runtime()]
loadData of org.springframework.security#spring-security-web;4.2.7.RELEASE of rootConf=default
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework.security#spring-security-web;4.2.7.RELEASE [runtime→compile]
loadData of org.springframework.security#spring-security-web;4.2.7.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→aopalliance#aopalliance;1.0 [runtime→runtime()]
loadData of aopalliance#aopalliance;1.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→aopalliance#aopalliance;1.0 [runtime→compile]
loadData of aopalliance#aopalliance;1.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework.security#spring-security-core;4.2.7.RELEASE [runtime→runtime()]
loadData of org.springframework.security#spring-security-core;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework.security#spring-security-core;4.2.7.RELEASE [runtime→compile]
loadData of org.springframework.security#spring-security-core;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→commons-codec#commons-codec;1.10 [runtime→runtime()]
loadData of commons-codec#commons-codec;1.10 of rootConf=default
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→commons-codec#commons-codec;1.10 [runtime→compile]
loadData of commons-codec#commons-codec;1.10 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.codehaus.jackson#jackson-mapper-asl;1.9.13 [runtime→runtime()]
loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.13 of rootConf=default
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.codehaus.jackson#jackson-mapper-asl;1.9.13 [runtime→compile]
loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.13 of rootConf=default
== resolving dependencies org.codehaus.jackson#jackson-mapper-asl;1.9.13→org.codehaus.jackson#jackson-core-asl;1.9.13 [runtime→runtime()]
loadData of org.codehaus.jackson#jackson-core-asl;1.9.13 of rootConf=default
== resolving dependencies org.codehaus.jackson#jackson-mapper-asl;1.9.13→org.codehaus.jackson#jackson-core-asl;1.9.13 [runtime→compile]
loadData of org.codehaus.jackson#jackson-core-asl;1.9.13 of rootConf=default
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.apache.httpcomponents#httpclient;4.5.5 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.apache.httpcomponents#httpclient;4.5.5 [runtime→compile]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→org.apache.httpcomponents#httpcore;4.4.9 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→org.apache.httpcomponents#httpcore;4.4.9 [runtime→compile]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.12 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {test=[runtime(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {test=[runtime(), master()]}
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→commons-logging#commons-logging;1.1.3 [runtime→runtime()]
loadData of commons-logging#commons-logging;1.1.3 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→commons-logging#commons-logging;1.2 [runtime→runtime()]
loadData of commons-logging#commons-logging;1.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→commons-logging#commons-logging;1.2 [runtime→compile]
loadData of commons-logging#commons-logging;1.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→commons-codec#commons-codec;1.10 [runtime→runtime()]
loadData of commons-codec#commons-codec;1.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→commons-codec#commons-codec;1.10 [runtime→compile]
loadData of commons-codec#commons-codec;1.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→commons-io#commons-io;2.1 [runtime→runtime()]
loadData of commons-io#commons-io;2.1 of rootConf=default
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→commons-io#commons-io;2.1 [runtime→compile]
loadData of commons-io#commons-io;2.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.esotericsoftware.yamlbeans#yamlbeans;1.06 [runtime→runtime()]
loadData of com.esotericsoftware.yamlbeans#yamlbeans;1.06 of rootConf=default
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.esotericsoftware.yamlbeans#yamlbeans;1.06 [runtime→compile]
loadData of com.esotericsoftware.yamlbeans#yamlbeans;1.06 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 [runtime→runtime()]
loadData of org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 [runtime→compile]
loadData of org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.apache.tomcat#tomcat-juli;8.0.15 [runtime→runtime()]
loadData of org.apache.tomcat#tomcat-juli;8.0.15 of rootConf=default
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.apache.tomcat#tomcat-juli;8.0.15 [runtime→compile]
loadData of org.apache.tomcat#tomcat-juli;8.0.15 of rootConf=default
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.google.protobuf#protobuf-java;2.6.1 [runtime→runtime()]
loadData of com.google.protobuf#protobuf-java;2.6.1 of rootConf=default
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.google.protobuf#protobuf-java;2.6.1 [runtime→compile]
loadData of com.google.protobuf#protobuf-java;2.6.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.4 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE→org.cloudfoundry#cloudfoundry-client-lib;1.1.3 [runtime→runtime()]
loadData of org.cloudfoundry#cloudfoundry-client-lib;1.1.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE→org.cloudfoundry#cloudfoundry-client-lib;1.1.3 [runtime→compile]
loadData of org.cloudfoundry#cloudfoundry-client-lib;1.1.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-cloudfoundry/ivy-1.1.2.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-cloudfoundry/ivy-1.1.2.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE
found org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE in jcenter
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.security#spring-security-rsa;1.0.3.RELEASE [compile→master()]
loadData of org.springframework.security#spring-security-rsa;1.0.3.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.security#spring-security-rsa;1.0.3.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.security#spring-security-rsa;1.0.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.security/spring-security-rsa/ivy-1.0.3.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.security#spring-security-rsa;1.0.3.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.security/spring-security-rsa/ivy-1.0.3.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.security#spring-security-rsa;1.0.3.RELEASE
found org.springframework.security#spring-security-rsa;1.0.3.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-crypto;3.2.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.1.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.security#spring-security-rsa;1.0.3.RELEASE [compile→compile()]
loadData of org.springframework.security#spring-security-rsa;1.0.3.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-crypto;3.2.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.1.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.security#spring-security-rsa;1.0.3.RELEASE→org.bouncycastle#bcpkix-jdk15on;1.55 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-crypto;3.2.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.1.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-crypto;3.2.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.1.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-crypto;3.2.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.1.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-crypto;3.2.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.1.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of org.bouncycastle#bcpkix-jdk15on;1.55 of rootConf=default
using downloadGrapes to resolve org.bouncycastle#bcpkix-jdk15on;1.55
downloadGrapes: Checking cache for: dependency: org.bouncycastle#bcpkix-jdk15on;1.55 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.bouncycastle/bcpkix-jdk15on/ivy-1.55.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.bouncycastle#bcpkix-jdk15on;1.55 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.bouncycastle/bcpkix-jdk15on/ivy-1.55.xml
downloadGrapes: module revision found in cache: org.bouncycastle#bcpkix-jdk15on;1.55
found org.bouncycastle#bcpkix-jdk15on;1.55 in localm2
== resolving dependencies org.springframework.security#spring-security-rsa;1.0.3.RELEASE→org.bouncycastle#bcpkix-jdk15on;1.55 [compile→compile()]
loadData of org.bouncycastle#bcpkix-jdk15on;1.55 of rootConf=default
== resolving dependencies org.bouncycastle#bcpkix-jdk15on;1.55→org.bouncycastle#bcprov-jdk15on;1.55 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-crypto;3.2.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.1.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-crypto;3.2.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.1.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-crypto;3.2.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.1.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-crypto;3.2.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.1.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of org.bouncycastle#bcprov-jdk15on;1.55 of rootConf=default
using downloadGrapes to resolve org.bouncycastle#bcprov-jdk15on;1.55
downloadGrapes: Checking cache for: dependency: org.bouncycastle#bcprov-jdk15on;1.55 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.bouncycastle/bcprov-jdk15on/ivy-1.55.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.bouncycastle#bcprov-jdk15on;1.55 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.bouncycastle/bcprov-jdk15on/ivy-1.55.xml
downloadGrapes: module revision found in cache: org.bouncycastle#bcprov-jdk15on;1.55
found org.bouncycastle#bcprov-jdk15on;1.55 in localm2
== resolving dependencies org.bouncycastle#bcpkix-jdk15on;1.55→org.bouncycastle#bcprov-jdk15on;1.55 [compile→compile()]
loadData of org.bouncycastle#bcprov-jdk15on;1.55 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.security#spring-security-rsa;1.0.3.RELEASE [runtime→runtime()]
loadData of org.springframework.security#spring-security-rsa;1.0.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.security#spring-security-rsa;1.0.3.RELEASE [runtime→compile]
loadData of org.springframework.security#spring-security-rsa;1.0.3.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-crypto;3.2.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in runtime
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.1.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in runtime
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.security#spring-security-rsa;1.0.3.RELEASE→org.bouncycastle#bcpkix-jdk15on;1.55 [runtime→runtime()]
loadData of org.bouncycastle#bcpkix-jdk15on;1.55 of rootConf=default
== resolving dependencies org.springframework.security#spring-security-rsa;1.0.3.RELEASE→org.bouncycastle#bcpkix-jdk15on;1.55 [runtime→compile]
loadData of org.bouncycastle#bcpkix-jdk15on;1.55 of rootConf=default
== resolving dependencies org.bouncycastle#bcpkix-jdk15on;1.55→org.bouncycastle#bcprov-jdk15on;1.55 [runtime→runtime()]
loadData of org.bouncycastle#bcprov-jdk15on;1.55 of rootConf=default
== resolving dependencies org.bouncycastle#bcpkix-jdk15on;1.55→org.bouncycastle#bcprov-jdk15on;1.55 [runtime→compile]
loadData of org.bouncycastle#bcprov-jdk15on;1.55 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE→org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-cloud-connectors/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-cloud-connectors/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE
found org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE→org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-spring-service-connector/ivy-1.2.6.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-spring-service-connector/ivy-1.2.6.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE
found org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE in localm2
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {optional=[compile(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.zaxxer#HikariCP-java6;2.1.0 {optional=[compile(), master()]} ⇒ dependency: com.zaxxer#HikariCP-java6;2.3.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-dbcp2;2.0 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-dbcp2;2.1.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;7.0.53 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mongodb#mongo-java-driver;2.11.4 {optional=[compile(), master()]} ⇒ dependency: org.mongodb#mongo-java-driver;3.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.4.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;3.1.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context-support;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context-support;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.1.0 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {optional=[compile(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.zaxxer#HikariCP-java6;2.1.0 {optional=[compile(), master()]} ⇒ dependency: com.zaxxer#HikariCP-java6;2.3.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-dbcp2;2.0 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-dbcp2;2.1.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;7.0.53 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mongodb#mongo-java-driver;2.11.4 {optional=[compile(), master()]} ⇒ dependency: org.mongodb#mongo-java-driver;3.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.4.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;3.1.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context-support;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context-support;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.1.0 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {optional=[compile(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.zaxxer#HikariCP-java6;2.1.0 {optional=[compile(), master()]} ⇒ dependency: com.zaxxer#HikariCP-java6;2.3.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-dbcp2;2.0 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-dbcp2;2.1.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;7.0.53 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mongodb#mongo-java-driver;2.11.4 {optional=[compile(), master()]} ⇒ dependency: org.mongodb#mongo-java-driver;3.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.4.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;3.1.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context-support;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context-support;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.1.0 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {optional=[compile(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.zaxxer#HikariCP-java6;2.1.0 {optional=[compile(), master()]} ⇒ dependency: com.zaxxer#HikariCP-java6;2.3.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-dbcp2;2.0 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-dbcp2;2.1.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;7.0.53 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mongodb#mongo-java-driver;2.11.4 {optional=[compile(), master()]} ⇒ dependency: org.mongodb#mongo-java-driver;3.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.4.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;3.1.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context-support;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context-support;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.1.0 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {optional=[compile(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.zaxxer#HikariCP-java6;2.1.0 {optional=[compile(), master()]} ⇒ dependency: com.zaxxer#HikariCP-java6;2.3.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-dbcp2;2.0 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-dbcp2;2.1.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;7.0.53 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mongodb#mongo-java-driver;2.11.4 {optional=[compile(), master()]} ⇒ dependency: org.mongodb#mongo-java-driver;3.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.4.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;3.1.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context-support;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context-support;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.1.0 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {optional=[compile(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.zaxxer#HikariCP-java6;2.1.0 {optional=[compile(), master()]} ⇒ dependency: com.zaxxer#HikariCP-java6;2.3.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-dbcp2;2.0 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-dbcp2;2.1.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;7.0.53 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mongodb#mongo-java-driver;2.11.4 {optional=[compile(), master()]} ⇒ dependency: org.mongodb#mongo-java-driver;3.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.4.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;3.1.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context-support;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context-support;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.1.0 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-core/ivy-1.2.6.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-core/ivy-1.2.6.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE
found org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {optional=[compile(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.zaxxer#HikariCP-java6;2.1.0 {optional=[compile(), master()]} ⇒ dependency: com.zaxxer#HikariCP-java6;2.3.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-dbcp2;2.0 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-dbcp2;2.1.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;7.0.53 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mongodb#mongo-java-driver;2.11.4 {optional=[compile(), master()]} ⇒ dependency: org.mongodb#mongo-java-driver;3.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.4.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;3.1.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context-support;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context-support;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.1.0 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {optional=[compile(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.zaxxer#HikariCP-java6;2.1.0 {optional=[compile(), master()]} ⇒ dependency: com.zaxxer#HikariCP-java6;2.3.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-dbcp2;2.0 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-dbcp2;2.1.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;7.0.53 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mongodb#mongo-java-driver;2.11.4 {optional=[compile(), master()]} ⇒ dependency: org.mongodb#mongo-java-driver;3.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.4.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;3.1.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context-support;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context-support;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.1.0 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {optional=[compile(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.zaxxer#HikariCP-java6;2.1.0 {optional=[compile(), master()]} ⇒ dependency: com.zaxxer#HikariCP-java6;2.3.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-dbcp2;2.0 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-dbcp2;2.1.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;7.0.53 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mongodb#mongo-java-driver;2.11.4 {optional=[compile(), master()]} ⇒ dependency: org.mongodb#mongo-java-driver;3.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.4.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;3.1.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context-support;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context-support;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.1.0 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {optional=[compile(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.zaxxer#HikariCP-java6;2.1.0 {optional=[compile(), master()]} ⇒ dependency: com.zaxxer#HikariCP-java6;2.3.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-dbcp2;2.0 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-dbcp2;2.1.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;7.0.53 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mongodb#mongo-java-driver;2.11.4 {optional=[compile(), master()]} ⇒ dependency: org.mongodb#mongo-java-driver;3.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.4.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;3.1.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context-support;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context-support;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.1.0 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-cloudfoundry-connector/ivy-1.2.6.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-cloudfoundry-connector/ivy-1.2.6.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE
found org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-heroku-connector/ivy-1.2.6.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-heroku-connector/ivy-1.2.6.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE
found org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-localconfig-connector/ivy-1.2.6.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-localconfig-connector/ivy-1.2.6.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE
found org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE→org.apache.commons#commons-lang3;3.3.2 [compile→master()]
loadData of org.apache.commons#commons-lang3;3.3.2 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE→org.apache.commons#commons-lang3;3.5 [compile→master()]
loadData of org.apache.commons#commons-lang3;3.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE→org.apache.commons#commons-lang3;3.3.2 [compile→compile()]
loadData of org.apache.commons#commons-lang3;3.3.2 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE→org.apache.commons#commons-lang3;3.5 [compile→compile()]
loadData of org.apache.commons#commons-lang3;3.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE→org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE [compile→runtime()]
loadData of org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE→org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE [compile→compile]
loadData of org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {optional=[compile(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.zaxxer#HikariCP-java6;2.1.0 {optional=[compile(), master()]} ⇒ dependency: com.zaxxer#HikariCP-java6;2.3.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-dbcp2;2.0 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-dbcp2;2.1.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;7.0.53 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mongodb#mongo-java-driver;2.11.4 {optional=[compile(), master()]} ⇒ dependency: org.mongodb#mongo-java-driver;3.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.4.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;3.1.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context-support;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context-support;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.1.0 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE→org.apache.commons#commons-lang3;3.3.2 [runtime→runtime()]
loadData of org.apache.commons#commons-lang3;3.3.2 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE→org.apache.commons#commons-lang3;3.5 [runtime→runtime()]
loadData of org.apache.commons#commons-lang3;3.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE→org.apache.commons#commons-lang3;3.5 [runtime→compile]
loadData of org.apache.commons#commons-lang3;3.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE→org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE→org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-sleuth/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-sleuth/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE in jcenter
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-aop/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-aop/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE
found org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE→org.aspectj#aspectjweaver;1.8.13 [compile→master()]
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
loadData of org.aspectj#aspectjweaver;1.8.13 of rootConf=default
using downloadGrapes to resolve org.aspectj#aspectjweaver;1.8.13
downloadGrapes: Checking cache for: dependency: org.aspectj#aspectjweaver;1.8.13 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.aspectj/aspectjweaver/ivy-1.8.13.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.aspectj#aspectjweaver;1.8.13 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.aspectj/aspectjweaver/ivy-1.8.13.xml
downloadGrapes: module revision found in cache: org.aspectj#aspectjweaver;1.8.13
found org.aspectj#aspectjweaver;1.8.13 in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE→org.aspectj#aspectjweaver;1.8.13 [compile→compile()]
loadData of org.aspectj#aspectjweaver;1.8.13 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE [compile→runtime()]
loadData of org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE [compile→compile]
loadData of org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE→org.aspectj#aspectjweaver;1.8.13 [runtime→runtime()]
loadData of org.aspectj#aspectjweaver;1.8.13 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE→org.aspectj#aspectjweaver;1.8.13 [runtime→compile]
loadData of org.aspectj#aspectjweaver;1.8.13 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-sleuth-core/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-sleuth-core/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE→org.aspectj#aspectjrt;1.8.13 [compile→master()]
loadData of org.aspectj#aspectjrt;1.8.13 of rootConf=default
using downloadGrapes to resolve org.aspectj#aspectjrt;1.8.13
downloadGrapes: Checking cache for: dependency: org.aspectj#aspectjrt;1.8.13 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.aspectj/aspectjrt/ivy-1.8.13.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.aspectj#aspectjrt;1.8.13 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.aspectj/aspectjrt/ivy-1.8.13.xml
downloadGrapes: module revision found in cache: org.aspectj#aspectjrt;1.8.13
found org.aspectj#aspectjrt;1.8.13 in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE→org.aspectj#aspectjrt;1.8.13 [compile→compile()]
loadData of org.aspectj#aspectjrt;1.8.13 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE→org.aspectj#aspectjrt;1.8.13 [runtime→runtime()]
loadData of org.aspectj#aspectjrt;1.8.13 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE→org.aspectj#aspectjrt;1.8.13 [runtime→compile]
loadData of org.aspectj#aspectjrt;1.8.13 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-zookeeper-all/ivy-1.2.2.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-zookeeper-all/ivy-1.2.2.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE
found org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE in jcenter
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-zookeeper-config/ivy-1.2.2.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-zookeeper-config/ivy-1.2.2.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE
found org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-zookeeper/ivy-1.2.2.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-zookeeper/ivy-1.2.2.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE
found org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-zookeeper-core/ivy-1.2.2.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-zookeeper-core/ivy-1.2.2.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE
found org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-zookeeper-config/ivy-1.2.2.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-zookeeper-config/ivy-1.2.2.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE
found org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.apache.curator#curator-recipes;2.11.1 [compile→master()]
loadData of org.apache.curator#curator-recipes;2.11.1 of rootConf=default
using downloadGrapes to resolve org.apache.curator#curator-recipes;2.11.1
downloadGrapes: Checking cache for: dependency: org.apache.curator#curator-recipes;2.11.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.curator/curator-recipes/ivy-2.11.1.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.apache.curator#curator-recipes;2.11.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.curator/curator-recipes/ivy-2.11.1.xml
downloadGrapes: module revision found in cache: org.apache.curator#curator-recipes;2.11.1
found org.apache.curator#curator-recipes;2.11.1 in localm2
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.apache.curator#curator-recipes;2.11.1 [compile→compile()]
loadData of org.apache.curator#curator-recipes;2.11.1 of rootConf=default
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.apache.curator#curator-recipes;2.11.1→org.apache.curator#curator-framework;2.11.1 [compile→master()]
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of org.apache.curator#curator-framework;2.11.1 of rootConf=default
using downloadGrapes to resolve org.apache.curator#curator-framework;2.11.1
downloadGrapes: Checking cache for: dependency: org.apache.curator#curator-framework;2.11.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.curator/curator-framework/ivy-2.11.1.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.apache.curator#curator-framework;2.11.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.curator/curator-framework/ivy-2.11.1.xml
downloadGrapes: module revision found in cache: org.apache.curator#curator-framework;2.11.1
found org.apache.curator#curator-framework;2.11.1 in localm2
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.apache.curator#curator-recipes;2.11.1→org.apache.curator#curator-framework;2.11.1 [compile→compile()]
loadData of org.apache.curator#curator-framework;2.11.1 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.apache.curator#curator-framework;2.11.1→org.apache.curator#curator-client;2.11.1 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of org.apache.curator#curator-client;2.11.1 of rootConf=default
using downloadGrapes to resolve org.apache.curator#curator-client;2.11.1
downloadGrapes: Checking cache for: dependency: org.apache.curator#curator-client;2.11.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.curator/curator-client/ivy-2.11.1.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.apache.curator#curator-client;2.11.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.curator/curator-client/ivy-2.11.1.xml
downloadGrapes: module revision found in cache: org.apache.curator#curator-client;2.11.1
found org.apache.curator#curator-client;2.11.1 in localm2
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.apache.curator#curator-framework;2.11.1→org.apache.curator#curator-client;2.11.1 [compile→compile()]
loadData of org.apache.curator#curator-client;2.11.1 of rootConf=default
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.apache.curator#curator-client;2.11.1→org.apache.zookeeper#zookeeper;3.4.8 [compile→master()]
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of org.apache.zookeeper#zookeeper;3.4.8 of rootConf=default
using downloadGrapes to resolve org.apache.zookeeper#zookeeper;3.4.8
downloadGrapes: Checking cache for: dependency: org.apache.zookeeper#zookeeper;3.4.8 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.zookeeper/zookeeper/ivy-3.4.8.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.apache.zookeeper#zookeeper;3.4.8 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.zookeeper/zookeeper/ivy-3.4.8.xml
downloadGrapes: module revision found in cache: org.apache.zookeeper#zookeeper;3.4.8
found org.apache.zookeeper#zookeeper;3.4.8 in localm2
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.apache.curator#curator-client;2.11.1→org.apache.zookeeper#zookeeper;3.4.8 [compile→compile()]
loadData of org.apache.zookeeper#zookeeper;3.4.8 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]} in compile
excluding dependency: log4j#log4j;1.2.16 {compile=[compile(), master()], runtime=[runtime()]} in compile
excluding dependency: io.netty#netty;3.7.0.Final {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: junit#junit;4.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.apache.zookeeper#zookeeper;3.4.8→org.slf4j#slf4j-api;1.7.25 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]} in compile
excluding dependency: log4j#log4j;1.2.16 {compile=[compile(), master()], runtime=[runtime()]} in compile
excluding dependency: io.netty#netty;3.7.0.Final {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: junit#junit;4.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.zookeeper#zookeeper;3.4.8→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.zookeeper#zookeeper;3.4.8→jline#jline;0.9.94 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]} in compile
excluding dependency: log4j#log4j;1.2.16 {compile=[compile(), master()], runtime=[runtime()]} in compile
excluding dependency: io.netty#netty;3.7.0.Final {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: junit#junit;4.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of jline#jline;0.9.94 of rootConf=default
using downloadGrapes to resolve jline#jline;0.9.94
downloadGrapes: Checking cache for: dependency: jline#jline;0.9.94 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/jline/jline/ivy-0.9.94.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for jline#jline;0.9.94 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/jline/jline/ivy-0.9.94.xml
downloadGrapes: module revision found in cache: jline#jline;0.9.94
found jline#jline;0.9.94 in localm2
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: junit#junit;4.12 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.apache.zookeeper#zookeeper;3.4.8→jline#jline;0.9.94 [compile→compile()]
loadData of jline#jline;0.9.94 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: junit#junit;4.12 {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: junit#junit;4.12 {compile=[compile(), master()], runtime=[runtime()]} in compile
== resolving dependencies org.apache.curator#curator-client;2.11.1→com.google.guava#guava;18.0 [compile→master()]
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of com.google.guava#guava;18.0 of rootConf=default
using downloadGrapes to resolve com.google.guava#guava;18.0
downloadGrapes: Checking cache for: dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.google.guava/guava/ivy-18.0.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for com.google.guava#guava;18.0 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.google.guava/guava/ivy-18.0.xml
downloadGrapes: module revision found in cache: com.google.guava#guava;18.0
found com.google.guava#guava;18.0 in localm2
== resolving dependencies org.apache.curator#curator-client;2.11.1→com.google.guava#guava;18.0 [compile→compile()]
loadData of com.google.guava#guava;18.0 of rootConf=default
== resolving dependencies org.apache.curator#curator-client;2.11.1→org.slf4j#slf4j-api;1.7.25 [compile→master()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.curator#curator-client;2.11.1→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.apache.curator#curator-recipes;2.11.1 [runtime→runtime()]
loadData of org.apache.curator#curator-recipes;2.11.1 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.apache.curator#curator-recipes;2.11.1 [runtime→compile]
loadData of org.apache.curator#curator-recipes;2.11.1 of rootConf=default
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.apache.curator#curator-recipes;2.11.1→org.apache.curator#curator-framework;2.11.1 [runtime→runtime()]
loadData of org.apache.curator#curator-framework;2.11.1 of rootConf=default
== resolving dependencies org.apache.curator#curator-recipes;2.11.1→org.apache.curator#curator-framework;2.11.1 [runtime→compile]
loadData of org.apache.curator#curator-framework;2.11.1 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.apache.curator#curator-framework;2.11.1→org.apache.curator#curator-client;2.11.1 [runtime→runtime()]
loadData of org.apache.curator#curator-client;2.11.1 of rootConf=default
== resolving dependencies org.apache.curator#curator-framework;2.11.1→org.apache.curator#curator-client;2.11.1 [runtime→compile]
loadData of org.apache.curator#curator-client;2.11.1 of rootConf=default
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.apache.curator#curator-client;2.11.1→org.apache.zookeeper#zookeeper;3.4.8 [runtime→runtime()]
loadData of org.apache.zookeeper#zookeeper;3.4.8 of rootConf=default
== resolving dependencies org.apache.curator#curator-client;2.11.1→org.apache.zookeeper#zookeeper;3.4.8 [runtime→compile]
loadData of org.apache.zookeeper#zookeeper;3.4.8 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]} in runtime
excluding dependency: log4j#log4j;1.2.16 {compile=[compile(), master()], runtime=[runtime()]} in runtime
excluding dependency: io.netty#netty;3.7.0.Final {compile=[compile(), master()], runtime=[runtime()]} in runtime
dependency descriptor has been mediated: dependency: junit#junit;4.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.apache.zookeeper#zookeeper;3.4.8→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.zookeeper#zookeeper;3.4.8→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.zookeeper#zookeeper;3.4.8→jline#jline;0.9.94 [runtime→runtime()]
loadData of jline#jline;0.9.94 of rootConf=default
== resolving dependencies org.apache.zookeeper#zookeeper;3.4.8→jline#jline;0.9.94 [runtime→compile]
loadData of jline#jline;0.9.94 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: junit#junit;4.12 {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: junit#junit;4.12 {compile=[compile(), master()], runtime=[runtime()]} in runtime
== resolving dependencies org.apache.curator#curator-client;2.11.1→com.google.guava#guava;18.0 [runtime→runtime()]
loadData of com.google.guava#guava;18.0 of rootConf=default
== resolving dependencies org.apache.curator#curator-client;2.11.1→com.google.guava#guava;18.0 [runtime→compile]
loadData of com.google.guava#guava;18.0 of rootConf=default
== resolving dependencies org.apache.curator#curator-client;2.11.1→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.curator#curator-client;2.11.1→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-zookeeper-discovery/ivy-1.2.2.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-zookeeper-discovery/ivy-1.2.2.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE
found org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-zookeeper-discovery/ivy-1.2.2.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-zookeeper-discovery/ivy-1.2.2.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE
found org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.apache.curator#curator-x-discovery;2.11.1 [compile→master()]
loadData of org.apache.curator#curator-x-discovery;2.11.1 of rootConf=default
using downloadGrapes to resolve org.apache.curator#curator-x-discovery;2.11.1
downloadGrapes: Checking cache for: dependency: org.apache.curator#curator-x-discovery;2.11.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.curator/curator-x-discovery/ivy-2.11.1.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.apache.curator#curator-x-discovery;2.11.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.curator/curator-x-discovery/ivy-2.11.1.xml
downloadGrapes: module revision found in cache: org.apache.curator#curator-x-discovery;2.11.1
found org.apache.curator#curator-x-discovery;2.11.1 in localm2
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.apache.curator#curator-x-discovery;2.11.1 [compile→compile()]
loadData of org.apache.curator#curator-x-discovery;2.11.1 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.apache.curator#curator-x-discovery;2.11.1→org.apache.curator#curator-recipes;2.11.1 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of org.apache.curator#curator-recipes;2.11.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.curator#curator-x-discovery;2.11.1→org.apache.curator#curator-recipes;2.11.1 [compile→compile()]
loadData of org.apache.curator#curator-recipes;2.11.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.curator#curator-x-discovery;2.11.1→org.codehaus.jackson#jackson-mapper-asl;1.9.13 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.13 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.curator#curator-x-discovery;2.11.1→org.codehaus.jackson#jackson-mapper-asl;1.9.13 [compile→compile()]
loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.13 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-netflix-core/ivy-1.4.5.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-netflix-core/ivy-1.4.5.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE
found org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE in localm2
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.7.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.8.11 {optional=[compile(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.7.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.8.11 {optional=[compile(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.7.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.8.11 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.7.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.8.11 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.7.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.8.11 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.7.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.8.11 {optional=[compile(), master()]}
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.7.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.8.11 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.7.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.8.11 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.7.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.8.11 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.7.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.8.11 {optional=[compile(), master()]}
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-archaius/ivy-1.4.5.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-archaius/ivy-1.4.5.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE
found org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-netflix-archaius/ivy-1.4.5.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-netflix-archaius/ivy-1.4.5.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE
found org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.netflix.archaius#archaius-core;0.7.4 [compile→master()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
using downloadGrapes to resolve com.netflix.archaius#archaius-core;0.7.4
downloadGrapes: Checking cache for: dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.archaius/archaius-core/ivy-0.7.4.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for com.netflix.archaius#archaius-core;0.7.4 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.archaius/archaius-core/ivy-0.7.4.xml
downloadGrapes: module revision found in cache: com.netflix.archaius#archaius-core;0.7.4
found com.netflix.archaius#archaius-core;0.7.4 in localm2
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.netflix.archaius#archaius-core;0.7.4 [compile→compile()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→commons-configuration#commons-configuration;1.8 [compile→master()]
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
using downloadGrapes to resolve commons-configuration#commons-configuration;1.8
downloadGrapes: Checking cache for: dependency: commons-configuration#commons-configuration;1.8 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/commons-configuration/commons-configuration/ivy-1.8.xml
post 1.3 ivy file: using exact as default matcher
found ivy file in cache for commons-configuration#commons-configuration;1.8 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/commons-configuration/commons-configuration/ivy-1.8.xml
downloadGrapes: module revision found in cache: commons-configuration#commons-configuration;1.8
found commons-configuration#commons-configuration;1.8 in localm2
dependency descriptor has been mediated: dependency: commons-collections#commons-collections;3.2.1 {optional=[compile(), master()]} ⇒ dependency: commons-collections#commons-collections;3.2.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-digester#commons-digester;1.8.1 {optional=[compile(), master()]} ⇒ dependency: commons-digester#commons-digester;2.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-beanutils#commons-beanutils;1.8.3 {optional=[compile(), master()]} ⇒ dependency: commons-beanutils#commons-beanutils;1.9.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.5 {optional=[compile(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: xml-apis#xml-apis;1.0.b2 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: xml-apis#xml-apis;1.4.01 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-dbcp#commons-dbcp;1.2.2 {test=[runtime(), master()]} ⇒ dependency: commons-dbcp#commons-dbcp;1.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-pool#commons-pool;1.4 {test=[runtime(), master()]} ⇒ dependency: commons-pool#commons-pool;1.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→commons-configuration#commons-configuration;1.8 [compile→compile()]
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
dependency descriptor has been mediated: dependency: commons-collections#commons-collections;3.2.1 {optional=[compile(), master()]} ⇒ dependency: commons-collections#commons-collections;3.2.2 {optional=[compile(), master()]}
excluding dependency: commons-logging#commons-logging;1.1.1 {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: commons-digester#commons-digester;1.8.1 {optional=[compile(), master()]} ⇒ dependency: commons-digester#commons-digester;2.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-beanutils#commons-beanutils;1.8.3 {optional=[compile(), master()]} ⇒ dependency: commons-beanutils#commons-beanutils;1.9.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.5 {optional=[compile(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: xml-apis#xml-apis;1.0.b2 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: xml-apis#xml-apis;1.4.01 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-dbcp#commons-dbcp;1.2.2 {test=[runtime(), master()]} ⇒ dependency: commons-dbcp#commons-dbcp;1.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-pool#commons-pool;1.4 {test=[runtime(), master()]} ⇒ dependency: commons-pool#commons-pool;1.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies commons-configuration#commons-configuration;1.8→commons-lang#commons-lang;2.6 [compile→master()]
dependency descriptor has been mediated: dependency: commons-collections#commons-collections;3.2.1 {optional=[compile(), master()]} ⇒ dependency: commons-collections#commons-collections;3.2.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-digester#commons-digester;1.8.1 {optional=[compile(), master()]} ⇒ dependency: commons-digester#commons-digester;2.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-beanutils#commons-beanutils;1.8.3 {optional=[compile(), master()]} ⇒ dependency: commons-beanutils#commons-beanutils;1.9.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.5 {optional=[compile(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: xml-apis#xml-apis;1.0.b2 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: xml-apis#xml-apis;1.4.01 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-dbcp#commons-dbcp;1.2.2 {test=[runtime(), master()]} ⇒ dependency: commons-dbcp#commons-dbcp;1.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-pool#commons-pool;1.4 {test=[runtime(), master()]} ⇒ dependency: commons-pool#commons-pool;1.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-collections#commons-collections;3.2.1 {optional=[compile(), master()]} ⇒ dependency: commons-collections#commons-collections;3.2.2 {optional=[compile(), master()]}
excluding dependency: commons-logging#commons-logging;1.1.1 {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: commons-digester#commons-digester;1.8.1 {optional=[compile(), master()]} ⇒ dependency: commons-digester#commons-digester;2.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-beanutils#commons-beanutils;1.8.3 {optional=[compile(), master()]} ⇒ dependency: commons-beanutils#commons-beanutils;1.9.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.5 {optional=[compile(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: xml-apis#xml-apis;1.0.b2 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: xml-apis#xml-apis;1.4.01 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-dbcp#commons-dbcp;1.2.2 {test=[runtime(), master()]} ⇒ dependency: commons-dbcp#commons-dbcp;1.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-pool#commons-pool;1.4 {test=[runtime(), master()]} ⇒ dependency: commons-pool#commons-pool;1.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-collections#commons-collections;3.2.1 {optional=[compile(), master()]} ⇒ dependency: commons-collections#commons-collections;3.2.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-digester#commons-digester;1.8.1 {optional=[compile(), master()]} ⇒ dependency: commons-digester#commons-digester;2.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-beanutils#commons-beanutils;1.8.3 {optional=[compile(), master()]} ⇒ dependency: commons-beanutils#commons-beanutils;1.9.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.5 {optional=[compile(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: xml-apis#xml-apis;1.0.b2 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: xml-apis#xml-apis;1.4.01 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-dbcp#commons-dbcp;1.2.2 {test=[runtime(), master()]} ⇒ dependency: commons-dbcp#commons-dbcp;1.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-pool#commons-pool;1.4 {test=[runtime(), master()]} ⇒ dependency: commons-pool#commons-pool;1.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-collections#commons-collections;3.2.1 {optional=[compile(), master()]} ⇒ dependency: commons-collections#commons-collections;3.2.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-digester#commons-digester;1.8.1 {optional=[compile(), master()]} ⇒ dependency: commons-digester#commons-digester;2.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-beanutils#commons-beanutils;1.8.3 {optional=[compile(), master()]} ⇒ dependency: commons-beanutils#commons-beanutils;1.9.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.5 {optional=[compile(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: xml-apis#xml-apis;1.0.b2 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: xml-apis#xml-apis;1.4.01 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-dbcp#commons-dbcp;1.2.2 {test=[runtime(), master()]} ⇒ dependency: commons-dbcp#commons-dbcp;1.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-pool#commons-pool;1.4 {test=[runtime(), master()]} ⇒ dependency: commons-pool#commons-pool;1.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of commons-lang#commons-lang;2.6 of rootConf=default
using downloadGrapes to resolve commons-lang#commons-lang;2.6
downloadGrapes: Checking cache for: dependency: commons-lang#commons-lang;2.6 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/commons-lang/commons-lang/ivy-2.6.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for commons-lang#commons-lang;2.6 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/commons-lang/commons-lang/ivy-2.6.xml
downloadGrapes: module revision found in cache: commons-lang#commons-lang;2.6
found commons-lang#commons-lang;2.6 in localm2
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies commons-configuration#commons-configuration;1.8→commons-lang#commons-lang;2.6 [compile→compile()]
loadData of commons-lang#commons-lang;2.6 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [compile→master()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.fasterxml.jackson.core#jackson-core;2.8.11 [compile→master()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.fasterxml.jackson.core#jackson-core;2.8.11 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→master()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.google.guava#guava;18.0 [compile→master()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.google.guava#guava;18.0 [compile→compile()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon;2.2.5 [compile→master()]
loadData of com.netflix.ribbon#ribbon;2.2.5 of rootConf=default
using downloadGrapes to resolve com.netflix.ribbon#ribbon;2.2.5
downloadGrapes: Checking cache for: dependency: com.netflix.ribbon#ribbon;2.2.5 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.ribbon/ribbon/ivy-2.2.5.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.ribbon#ribbon;2.2.5 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.ribbon/ribbon/ivy-2.2.5.xml
downloadGrapes: module revision found in cache: com.netflix.ribbon#ribbon;2.2.5
found com.netflix.ribbon#ribbon;2.2.5 in localm2
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon;2.2.5 [compile→compile()]
loadData of com.netflix.ribbon#ribbon;2.2.5 of rootConf=default
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon-core;2.2.5 [compile→master()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
using downloadGrapes to resolve com.netflix.ribbon#ribbon-core;2.2.5
downloadGrapes: Checking cache for: dependency: com.netflix.ribbon#ribbon-core;2.2.5 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.ribbon/ribbon-core/ivy-2.2.5.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.ribbon#ribbon-core;2.2.5 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.ribbon/ribbon-core/ivy-2.2.5.xml
downloadGrapes: module revision found in cache: com.netflix.ribbon#ribbon-core;2.2.5
found com.netflix.ribbon#ribbon-core;2.2.5 in localm2
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon-core;2.2.5 [compile→compile()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon-httpclient;2.2.5 [compile→master()]
loadData of com.netflix.ribbon#ribbon-httpclient;2.2.5 of rootConf=default
using downloadGrapes to resolve com.netflix.ribbon#ribbon-httpclient;2.2.5
downloadGrapes: Checking cache for: dependency: com.netflix.ribbon#ribbon-httpclient;2.2.5 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.ribbon/ribbon-httpclient/ivy-2.2.5.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.ribbon#ribbon-httpclient;2.2.5 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.ribbon/ribbon-httpclient/ivy-2.2.5.xml
downloadGrapes: module revision found in cache: com.netflix.ribbon#ribbon-httpclient;2.2.5
found com.netflix.ribbon#ribbon-httpclient;2.2.5 in localm2
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon-httpclient;2.2.5 [compile→compile()]
loadData of com.netflix.ribbon#ribbon-httpclient;2.2.5 of rootConf=default
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [compile→master()]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
using downloadGrapes to resolve com.netflix.ribbon#ribbon-loadbalancer;2.2.5
downloadGrapes: Checking cache for: dependency: com.netflix.ribbon#ribbon-loadbalancer;2.2.5 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.ribbon/ribbon-loadbalancer/ivy-2.2.5.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.ribbon#ribbon-loadbalancer;2.2.5 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.ribbon/ribbon-loadbalancer/ivy-2.2.5.xml
downloadGrapes: module revision found in cache: com.netflix.ribbon#ribbon-loadbalancer;2.2.5
found com.netflix.ribbon#ribbon-loadbalancer;2.2.5 in localm2
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [compile→compile()]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.apache.curator#curator-x-discovery;2.11.1 [runtime→runtime()]
loadData of org.apache.curator#curator-x-discovery;2.11.1 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.apache.curator#curator-x-discovery;2.11.1 [runtime→compile]
loadData of org.apache.curator#curator-x-discovery;2.11.1 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.apache.curator#curator-x-discovery;2.11.1→org.apache.curator#curator-recipes;2.11.1 [runtime→runtime()]
loadData of org.apache.curator#curator-recipes;2.11.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.curator#curator-x-discovery;2.11.1→org.apache.curator#curator-recipes;2.11.1 [runtime→compile]
loadData of org.apache.curator#curator-recipes;2.11.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.curator#curator-x-discovery;2.11.1→org.codehaus.jackson#jackson-mapper-asl;1.9.13 [runtime→runtime()]
loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.13 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.curator#curator-x-discovery;2.11.1→org.codehaus.jackson#jackson-mapper-asl;1.9.13 [runtime→compile]
loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.13 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.7.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.8.11 {optional=[compile(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.netflix.archaius#archaius-core;0.7.4 [runtime→runtime()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.google.code.findbugs#jsr305;3.0.1 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
loadData of com.google.code.findbugs#jsr305;3.0.1 of rootConf=default
using downloadGrapes to resolve com.google.code.findbugs#jsr305;3.0.1
downloadGrapes: Checking cache for: dependency: com.google.code.findbugs#jsr305;3.0.1 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.google.code.findbugs/jsr305/ivy-3.0.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.google.code.findbugs#jsr305;3.0.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.google.code.findbugs/jsr305/ivy-3.0.1.xml
downloadGrapes: module revision found in cache: com.google.code.findbugs#jsr305;3.0.1
found com.google.code.findbugs#jsr305;3.0.1 in localm2
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.google.code.findbugs#jsr305;3.0.1 [runtime→runtime()]
loadData of com.google.code.findbugs#jsr305;3.0.1 of rootConf=default
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.google.code.findbugs#jsr305;3.0.1 [runtime→compile]
loadData of com.google.code.findbugs#jsr305;3.0.1 of rootConf=default
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.google.code.findbugs#jsr305;3.0.1 [runtime→compile()]
loadData of com.google.code.findbugs#jsr305;3.0.1 of rootConf=default
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→commons-configuration#commons-configuration;1.8 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→commons-configuration#commons-configuration;1.8 [runtime→runtime()]
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→commons-configuration#commons-configuration;1.8 [runtime→compile]
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
dependency descriptor has been mediated: dependency: commons-collections#commons-collections;3.2.1 {optional=[compile(), master()]} ⇒ dependency: commons-collections#commons-collections;3.2.2 {optional=[compile(), master()]}
excluding dependency: commons-logging#commons-logging;1.1.1 {compile=[compile(), master()], runtime=[runtime()]} in runtime
dependency descriptor has been mediated: dependency: commons-digester#commons-digester;1.8.1 {optional=[compile(), master()]} ⇒ dependency: commons-digester#commons-digester;2.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-beanutils#commons-beanutils;1.8.3 {optional=[compile(), master()]} ⇒ dependency: commons-beanutils#commons-beanutils;1.9.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.5 {optional=[compile(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: xml-apis#xml-apis;1.0.b2 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: xml-apis#xml-apis;1.4.01 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-dbcp#commons-dbcp;1.2.2 {test=[runtime(), master()]} ⇒ dependency: commons-dbcp#commons-dbcp;1.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-pool#commons-pool;1.4 {test=[runtime(), master()]} ⇒ dependency: commons-pool#commons-pool;1.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies commons-configuration#commons-configuration;1.8→commons-lang#commons-lang;2.6 [runtime→runtime()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
loadData of commons-lang#commons-lang;2.6 of rootConf=default
== resolving dependencies commons-configuration#commons-configuration;1.8→commons-lang#commons-lang;2.6 [runtime→compile]
loadData of commons-lang#commons-lang;2.6 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→commons-configuration#commons-configuration;1.8 [runtime→compile()]
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→org.slf4j#slf4j-api;1.7.25 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→org.slf4j#slf4j-api;1.7.25 [runtime→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.google.guava#guava;18.0 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.google.guava#guava;18.0 [runtime→runtime()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.google.guava#guava;18.0 [runtime→compile]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.google.guava#guava;18.0 [runtime→compile()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→compile()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→compile()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→commons-configuration#commons-configuration;1.8 [runtime→runtime()]
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→commons-configuration#commons-configuration;1.8 [runtime→compile]
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.google.guava#guava;18.0 [runtime→runtime()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.google.guava#guava;18.0 [runtime→compile]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon;2.2.5 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon;2.2.5 of rootConf=default
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→master()]
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→com.google.code.findbugs#annotations;2.0.0 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
using downloadGrapes to resolve com.google.code.findbugs#annotations;2.0.0
downloadGrapes: Checking cache for: dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.google.code.findbugs/annotations/ivy-2.0.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.google.code.findbugs#annotations;2.0.0 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.google.code.findbugs/annotations/ivy-2.0.0.xml
downloadGrapes: module revision found in cache: com.google.code.findbugs#annotations;2.0.0
found com.google.code.findbugs#annotations;2.0.0 in localm2
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→com.google.code.findbugs#annotations;2.0.0 [runtime→runtime()]
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→com.google.code.findbugs#annotations;2.0.0 [runtime→compile]
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→com.google.code.findbugs#annotations;2.0.0 [runtime→compile()]
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→com.google.guava#guava;18.0 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→com.google.guava#guava;18.0 [runtime→runtime()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→com.google.guava#guava;18.0 [runtime→compile]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→com.google.guava#guava;18.0 [runtime→compile()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→commons-configuration#commons-configuration;1.8 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→commons-configuration#commons-configuration;1.8 [runtime→runtime()]
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→commons-configuration#commons-configuration;1.8 [runtime→compile]
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→commons-configuration#commons-configuration;1.8 [runtime→compile()]
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→commons-lang#commons-lang;2.6 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of commons-lang#commons-lang;2.6 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→commons-lang#commons-lang;2.6 [runtime→runtime()]
loadData of commons-lang#commons-lang;2.6 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→commons-lang#commons-lang;2.6 [runtime→compile]
loadData of commons-lang#commons-lang;2.6 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→commons-lang#commons-lang;2.6 [runtime→compile()]
loadData of commons-lang#commons-lang;2.6 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→runtime()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→compile()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.ribbon#ribbon-transport;2.2.5 [runtime→master()]
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of com.netflix.ribbon#ribbon-transport;2.2.5 of rootConf=default
using downloadGrapes to resolve com.netflix.ribbon#ribbon-transport;2.2.5
downloadGrapes: Checking cache for: dependency: com.netflix.ribbon#ribbon-transport;2.2.5 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.ribbon/ribbon-transport/ivy-2.2.5.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.ribbon#ribbon-transport;2.2.5 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.ribbon/ribbon-transport/ivy-2.2.5.xml
downloadGrapes: module revision found in cache: com.netflix.ribbon#ribbon-transport;2.2.5
found com.netflix.ribbon#ribbon-transport;2.2.5 in localm2
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.ribbon#ribbon-transport;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-transport;2.2.5 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.ribbon#ribbon-transport;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-transport;2.2.5 of rootConf=default
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→compile()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→compile()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.netflix-commons#netflix-statistics;0.1.1 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of com.netflix.netflix-commons#netflix-statistics;0.1.1 of rootConf=default
using downloadGrapes to resolve com.netflix.netflix-commons#netflix-statistics;0.1.1
downloadGrapes: Checking cache for: dependency: com.netflix.netflix-commons#netflix-statistics;0.1.1 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.netflix-commons/netflix-statistics/ivy-0.1.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.netflix-commons#netflix-statistics;0.1.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.netflix-commons/netflix-statistics/ivy-0.1.1.xml
downloadGrapes: module revision found in cache: com.netflix.netflix-commons#netflix-statistics;0.1.1
found com.netflix.netflix-commons#netflix-statistics;0.1.1 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.netflix-commons#netflix-statistics;0.1.1 [runtime→runtime()]
loadData of com.netflix.netflix-commons#netflix-statistics;0.1.1 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.netflix-commons#netflix-statistics;0.1.1 [runtime→compile]
loadData of com.netflix.netflix-commons#netflix-statistics;0.1.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.netflix.netflix-commons#netflix-statistics;0.1.1→org.slf4j#slf4j-api;1.7.25 [compile→master()]
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-statistics;0.1.1→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-statistics;0.1.1→com.google.code.findbugs#annotations;2.0.0 [compile→master()]
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-statistics;0.1.1→com.google.code.findbugs#annotations;2.0.0 [compile→compile()]
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
default is loaded and no conf to load. Skip loading
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.netflix.netflix-commons#netflix-statistics;0.1.1→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-statistics;0.1.1→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-statistics;0.1.1→com.google.code.findbugs#annotations;2.0.0 [runtime→runtime()]
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-statistics;0.1.1→com.google.code.findbugs#annotations;2.0.0 [runtime→compile]
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.netflix-commons#netflix-statistics;0.1.1 [runtime→compile()]
loadData of com.netflix.netflix-commons#netflix-statistics;0.1.1 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→io.reactivex#rxjava;1.2.0 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
using downloadGrapes to resolve io.reactivex#rxjava;1.2.0
downloadGrapes: Checking cache for: dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/io.reactivex/rxjava/ivy-1.2.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for io.reactivex#rxjava;1.2.0 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/io.reactivex/rxjava/ivy-1.2.0.xml
downloadGrapes: module revision found in cache: io.reactivex#rxjava;1.2.0
found io.reactivex#rxjava;1.2.0 in localm2
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→io.reactivex#rxjava;1.2.0 [runtime→runtime()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→io.reactivex#rxjava;1.2.0 [runtime→compile]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→io.reactivex#rxjava;1.2.0 [runtime→compile()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→master()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.servo#servo-core;0.10.1 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
using downloadGrapes to resolve com.netflix.servo#servo-core;0.10.1
downloadGrapes: Checking cache for: dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.servo/servo-core/ivy-0.10.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.servo#servo-core;0.10.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.servo/servo-core/ivy-0.10.1.xml
downloadGrapes: module revision found in cache: com.netflix.servo#servo-core;0.10.1
found com.netflix.servo#servo-core;0.10.1 in localm2
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.servo#servo-core;0.10.1 [runtime→runtime()]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.servo#servo-core;0.10.1 [runtime→compile]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.servo#servo-core;0.10.1→org.slf4j#slf4j-api;1.7.25 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-core;0.10.1→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-core;0.10.1→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-core;0.10.1→org.slf4j#slf4j-api;1.7.25 [runtime→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-core;0.10.1→com.google.guava#guava;18.0 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-core;0.10.1→com.google.guava#guava;18.0 [runtime→runtime()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-core;0.10.1→com.google.guava#guava;18.0 [runtime→compile]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-core;0.10.1→com.google.guava#guava;18.0 [runtime→compile()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-core;0.10.1→com.google.code.findbugs#annotations;2.0.0 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-core;0.10.1→com.google.code.findbugs#annotations;2.0.0 [runtime→runtime()]
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-core;0.10.1→com.google.code.findbugs#annotations;2.0.0 [runtime→compile]
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-core;0.10.1→com.google.code.findbugs#annotations;2.0.0 [runtime→compile()]
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-core;0.10.1→com.netflix.servo#servo-internal;0.10.1 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of com.netflix.servo#servo-internal;0.10.1 of rootConf=default
using downloadGrapes to resolve com.netflix.servo#servo-internal;0.10.1
downloadGrapes: Checking cache for: dependency: com.netflix.servo#servo-internal;0.10.1 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.servo/servo-internal/ivy-0.10.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.servo#servo-internal;0.10.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.servo/servo-internal/ivy-0.10.1.xml
downloadGrapes: module revision found in cache: com.netflix.servo#servo-internal;0.10.1
found com.netflix.servo#servo-internal;0.10.1 in localm2
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.servo#servo-core;0.10.1→com.netflix.servo#servo-internal;0.10.1 [runtime→runtime()]
loadData of com.netflix.servo#servo-internal;0.10.1 of rootConf=default
== resolving dependencies com.netflix.servo#servo-core;0.10.1→com.netflix.servo#servo-internal;0.10.1 [runtime→compile]
loadData of com.netflix.servo#servo-internal;0.10.1 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.servo#servo-internal;0.10.1→org.slf4j#slf4j-api;1.7.25 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-internal;0.10.1→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-internal;0.10.1→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-internal;0.10.1→org.slf4j#slf4j-api;1.7.25 [runtime→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-internal;0.10.1→com.google.guava#guava;18.0 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-internal;0.10.1→com.google.guava#guava;18.0 [runtime→runtime()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-internal;0.10.1→com.google.guava#guava;18.0 [runtime→compile]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-internal;0.10.1→com.google.guava#guava;18.0 [runtime→compile()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-internal;0.10.1→com.google.code.findbugs#annotations;2.0.0 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-internal;0.10.1→com.google.code.findbugs#annotations;2.0.0 [runtime→runtime()]
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-internal;0.10.1→com.google.code.findbugs#annotations;2.0.0 [runtime→compile]
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-internal;0.10.1→com.google.code.findbugs#annotations;2.0.0 [runtime→compile()]
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-core;0.10.1→com.netflix.servo#servo-internal;0.10.1 [runtime→compile()]
loadData of com.netflix.servo#servo-internal;0.10.1 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.servo#servo-core;0.10.1 [runtime→compile()]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.google.guava#guava;18.0 [runtime→master()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.google.guava#guava;18.0 [runtime→runtime()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.google.guava#guava;18.0 [runtime→compile]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.google.guava#guava;18.0 [runtime→compile()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→runtime()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.netflix-commons#netflix-commons-util;0.1.1 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of com.netflix.netflix-commons#netflix-commons-util;0.1.1 of rootConf=default
using downloadGrapes to resolve com.netflix.netflix-commons#netflix-commons-util;0.1.1
downloadGrapes: Checking cache for: dependency: com.netflix.netflix-commons#netflix-commons-util;0.1.1 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.netflix-commons/netflix-commons-util/ivy-0.1.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.netflix-commons#netflix-commons-util;0.1.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.netflix-commons/netflix-commons-util/ivy-0.1.1.xml
downloadGrapes: module revision found in cache: com.netflix.netflix-commons#netflix-commons-util;0.1.1
found com.netflix.netflix-commons#netflix-commons-util;0.1.1 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.netflix-commons#netflix-commons-util;0.1.1 [runtime→runtime()]
loadData of com.netflix.netflix-commons#netflix-commons-util;0.1.1 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.netflix-commons#netflix-commons-util;0.1.1 [runtime→compile]
loadData of com.netflix.netflix-commons#netflix-commons-util;0.1.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.netflix.netflix-commons#netflix-commons-util;0.1.1→org.slf4j#slf4j-api;1.7.25 [compile→master()]
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-commons-util;0.1.1→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.netflix.netflix-commons#netflix-commons-util;0.1.1→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-commons-util;0.1.1→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.netflix-commons#netflix-commons-util;0.1.1 [runtime→compile()]
loadData of com.netflix.netflix-commons#netflix-commons-util;0.1.1 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→compile()]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxjava;1.2.0 [runtime→master()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxjava;1.2.0 [runtime→runtime()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxjava;1.2.0 [runtime→compile]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxjava;1.2.0 [runtime→compile()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxnetty;0.4.9 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
using downloadGrapes to resolve io.reactivex#rxnetty;0.4.9
downloadGrapes: Checking cache for: dependency: io.reactivex#rxnetty;0.4.9 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/io.reactivex/rxnetty/ivy-0.4.9.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for io.reactivex#rxnetty;0.4.9 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/io.reactivex/rxnetty/ivy-0.4.9.xml
downloadGrapes: module revision found in cache: io.reactivex#rxnetty;0.4.9
found io.reactivex#rxnetty;0.4.9 in localm2
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxnetty;0.4.9 [runtime→runtime()]
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxnetty;0.4.9 [runtime→compile]
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
== resolving dependencies io.reactivex#rxnetty;0.4.9→io.reactivex#rxjava;1.2.0 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty;0.4.9→io.reactivex#rxjava;1.2.0 [runtime→runtime()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty;0.4.9→io.reactivex#rxjava;1.2.0 [runtime→compile]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty;0.4.9→io.reactivex#rxjava;1.2.0 [runtime→compile()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty;0.4.9→io.netty#netty-codec-http;4.0.27.Final [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of io.netty#netty-codec-http;4.0.27.Final of rootConf=default
using downloadGrapes to resolve io.netty#netty-codec-http;4.0.27.Final
downloadGrapes: Checking cache for: dependency: io.netty#netty-codec-http;4.0.27.Final {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/io.netty/netty-codec-http/ivy-4.0.27.Final.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for io.netty#netty-codec-http;4.0.27.Final (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/io.netty/netty-codec-http/ivy-4.0.27.Final.xml
downloadGrapes: module revision found in cache: io.netty#netty-codec-http;4.0.27.Final
found io.netty#netty-codec-http;4.0.27.Final in localm2
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.reactivex#rxnetty;0.4.9→io.netty#netty-codec-http;4.0.27.Final [runtime→runtime()]
loadData of io.netty#netty-codec-http;4.0.27.Final of rootConf=default
== resolving dependencies io.reactivex#rxnetty;0.4.9→io.netty#netty-codec-http;4.0.27.Final [runtime→compile]
loadData of io.netty#netty-codec-http;4.0.27.Final of rootConf=default
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-codec-http;4.0.27.Final→io.netty#netty-codec;4.0.27.Final [compile→master()]
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of io.netty#netty-codec;4.0.27.Final of rootConf=default
using downloadGrapes to resolve io.netty#netty-codec;4.0.27.Final
downloadGrapes: Checking cache for: dependency: io.netty#netty-codec;4.0.27.Final {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/io.netty/netty-codec/ivy-4.0.27.Final.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for io.netty#netty-codec;4.0.27.Final (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/io.netty/netty-codec/ivy-4.0.27.Final.xml
downloadGrapes: module revision found in cache: io.netty#netty-codec;4.0.27.Final
found io.netty#netty-codec;4.0.27.Final in localm2
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-codec-http;4.0.27.Final→io.netty#netty-codec;4.0.27.Final [compile→compile()]
loadData of io.netty#netty-codec;4.0.27.Final of rootConf=default
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-codec;4.0.27.Final→io.netty#netty-transport;4.0.27.Final [compile→master()]
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of io.netty#netty-transport;4.0.27.Final of rootConf=default
using downloadGrapes to resolve io.netty#netty-transport;4.0.27.Final
downloadGrapes: Checking cache for: dependency: io.netty#netty-transport;4.0.27.Final {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/io.netty/netty-transport/ivy-4.0.27.Final.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for io.netty#netty-transport;4.0.27.Final (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/io.netty/netty-transport/ivy-4.0.27.Final.xml
downloadGrapes: module revision found in cache: io.netty#netty-transport;4.0.27.Final
found io.netty#netty-transport;4.0.27.Final in localm2
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-codec;4.0.27.Final→io.netty#netty-transport;4.0.27.Final [compile→compile()]
loadData of io.netty#netty-transport;4.0.27.Final of rootConf=default
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-transport;4.0.27.Final→io.netty#netty-buffer;4.0.27.Final [compile→master()]
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of io.netty#netty-buffer;4.0.27.Final of rootConf=default
using downloadGrapes to resolve io.netty#netty-buffer;4.0.27.Final
downloadGrapes: Checking cache for: dependency: io.netty#netty-buffer;4.0.27.Final {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/io.netty/netty-buffer/ivy-4.0.27.Final.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for io.netty#netty-buffer;4.0.27.Final (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/io.netty/netty-buffer/ivy-4.0.27.Final.xml
downloadGrapes: module revision found in cache: io.netty#netty-buffer;4.0.27.Final
found io.netty#netty-buffer;4.0.27.Final in localm2
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-transport;4.0.27.Final→io.netty#netty-buffer;4.0.27.Final [compile→compile()]
loadData of io.netty#netty-buffer;4.0.27.Final of rootConf=default
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-buffer;4.0.27.Final→io.netty#netty-common;4.0.27.Final [compile→master()]
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of io.netty#netty-common;4.0.27.Final of rootConf=default
using downloadGrapes to resolve io.netty#netty-common;4.0.27.Final
downloadGrapes: Checking cache for: dependency: io.netty#netty-common;4.0.27.Final {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/io.netty/netty-common/ivy-4.0.27.Final.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for io.netty#netty-common;4.0.27.Final (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/io.netty/netty-common/ivy-4.0.27.Final.xml
downloadGrapes: module revision found in cache: io.netty#netty-common;4.0.27.Final
found io.netty#netty-common;4.0.27.Final in localm2
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {optional=[compile(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.5 {optional=[compile(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-buffer;4.0.27.Final→io.netty#netty-common;4.0.27.Final [compile→compile()]
loadData of io.netty#netty-common;4.0.27.Final of rootConf=default
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {optional=[compile(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.5 {optional=[compile(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-codec-http;4.0.27.Final→io.netty#netty-codec;4.0.27.Final [compile→runtime()]
loadData of io.netty#netty-codec;4.0.27.Final of rootConf=default
== resolving dependencies io.netty#netty-codec-http;4.0.27.Final→io.netty#netty-codec;4.0.27.Final [compile→compile]
loadData of io.netty#netty-codec;4.0.27.Final of rootConf=default
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-codec;4.0.27.Final→io.netty#netty-transport;4.0.27.Final [runtime→runtime()]
loadData of io.netty#netty-transport;4.0.27.Final of rootConf=default
== resolving dependencies io.netty#netty-codec;4.0.27.Final→io.netty#netty-transport;4.0.27.Final [runtime→compile]
loadData of io.netty#netty-transport;4.0.27.Final of rootConf=default
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-transport;4.0.27.Final→io.netty#netty-buffer;4.0.27.Final [runtime→runtime()]
loadData of io.netty#netty-buffer;4.0.27.Final of rootConf=default
== resolving dependencies io.netty#netty-transport;4.0.27.Final→io.netty#netty-buffer;4.0.27.Final [runtime→compile]
loadData of io.netty#netty-buffer;4.0.27.Final of rootConf=default
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-buffer;4.0.27.Final→io.netty#netty-common;4.0.27.Final [runtime→runtime()]
loadData of io.netty#netty-common;4.0.27.Final of rootConf=default
== resolving dependencies io.netty#netty-buffer;4.0.27.Final→io.netty#netty-common;4.0.27.Final [runtime→compile]
loadData of io.netty#netty-common;4.0.27.Final of rootConf=default
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {optional=[compile(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.5 {optional=[compile(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-codec-http;4.0.27.Final→io.netty#netty-handler;4.0.27.Final [compile→master()]
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of io.netty#netty-handler;4.0.27.Final of rootConf=default
using downloadGrapes to resolve io.netty#netty-handler;4.0.27.Final
downloadGrapes: Checking cache for: dependency: io.netty#netty-handler;4.0.27.Final {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/io.netty/netty-handler/ivy-4.0.27.Final.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for io.netty#netty-handler;4.0.27.Final (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/io.netty/netty-handler/ivy-4.0.27.Final.xml
downloadGrapes: module revision found in cache: io.netty#netty-handler;4.0.27.Final
found io.netty#netty-handler;4.0.27.Final in localm2
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-codec-http;4.0.27.Final→io.netty#netty-handler;4.0.27.Final [compile→compile()]
loadData of io.netty#netty-handler;4.0.27.Final of rootConf=default
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-handler;4.0.27.Final→io.netty#netty-buffer;4.0.27.Final [compile→master()]
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
loadData of io.netty#netty-buffer;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-handler;4.0.27.Final→io.netty#netty-buffer;4.0.27.Final [compile→compile()]
loadData of io.netty#netty-buffer;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-handler;4.0.27.Final→io.netty#netty-transport;4.0.27.Final [compile→master()]
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
loadData of io.netty#netty-transport;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-handler;4.0.27.Final→io.netty#netty-transport;4.0.27.Final [compile→compile()]
loadData of io.netty#netty-transport;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-handler;4.0.27.Final→io.netty#netty-codec;4.0.27.Final [compile→master()]
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
loadData of io.netty#netty-codec;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-handler;4.0.27.Final→io.netty#netty-codec;4.0.27.Final [compile→compile()]
loadData of io.netty#netty-codec;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-codec-http;4.0.27.Final→io.netty#netty-handler;4.0.27.Final [compile→runtime()]
loadData of io.netty#netty-handler;4.0.27.Final of rootConf=default
== resolving dependencies io.netty#netty-codec-http;4.0.27.Final→io.netty#netty-handler;4.0.27.Final [compile→compile]
loadData of io.netty#netty-handler;4.0.27.Final of rootConf=default
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-handler;4.0.27.Final→io.netty#netty-buffer;4.0.27.Final [runtime→runtime()]
loadData of io.netty#netty-buffer;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-handler;4.0.27.Final→io.netty#netty-buffer;4.0.27.Final [runtime→compile]
loadData of io.netty#netty-buffer;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-handler;4.0.27.Final→io.netty#netty-transport;4.0.27.Final [runtime→runtime()]
loadData of io.netty#netty-transport;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-handler;4.0.27.Final→io.netty#netty-transport;4.0.27.Final [runtime→compile]
loadData of io.netty#netty-transport;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-handler;4.0.27.Final→io.netty#netty-codec;4.0.27.Final [runtime→runtime()]
loadData of io.netty#netty-codec;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-handler;4.0.27.Final→io.netty#netty-codec;4.0.27.Final [runtime→compile]
loadData of io.netty#netty-codec;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-codec-http;4.0.27.Final→io.netty#netty-codec;4.0.27.Final [runtime→runtime()]
loadData of io.netty#netty-codec;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-codec-http;4.0.27.Final→io.netty#netty-codec;4.0.27.Final [runtime→compile]
loadData of io.netty#netty-codec;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-codec-http;4.0.27.Final→io.netty#netty-handler;4.0.27.Final [runtime→runtime()]
loadData of io.netty#netty-handler;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-codec-http;4.0.27.Final→io.netty#netty-handler;4.0.27.Final [runtime→compile]
loadData of io.netty#netty-handler;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty;0.4.9→io.netty#netty-codec-http;4.0.27.Final [runtime→compile()]
loadData of io.netty#netty-codec-http;4.0.27.Final of rootConf=default
== resolving dependencies io.reactivex#rxnetty;0.4.9→io.netty#netty-transport-native-epoll;4.0.27.Final [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of io.netty#netty-transport-native-epoll;4.0.27.Final of rootConf=default
using downloadGrapes to resolve io.netty#netty-transport-native-epoll;4.0.27.Final
downloadGrapes: Checking cache for: dependency: io.netty#netty-transport-native-epoll;4.0.27.Final {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/io.netty/netty-transport-native-epoll/ivy-4.0.27.Final.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for io.netty#netty-transport-native-epoll;4.0.27.Final (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/io.netty/netty-transport-native-epoll/ivy-4.0.27.Final.xml
downloadGrapes: module revision found in cache: io.netty#netty-transport-native-epoll;4.0.27.Final
found io.netty#netty-transport-native-epoll;4.0.27.Final in localm2
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.reactivex#rxnetty;0.4.9→io.netty#netty-transport-native-epoll;4.0.27.Final [runtime→runtime()]
loadData of io.netty#netty-transport-native-epoll;4.0.27.Final of rootConf=default
== resolving dependencies io.reactivex#rxnetty;0.4.9→io.netty#netty-transport-native-epoll;4.0.27.Final [runtime→compile]
loadData of io.netty#netty-transport-native-epoll;4.0.27.Final of rootConf=default
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-transport-native-epoll;4.0.27.Final→io.netty#netty-common;4.0.27.Final [compile→master()]
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
loadData of io.netty#netty-common;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-transport-native-epoll;4.0.27.Final→io.netty#netty-common;4.0.27.Final [compile→compile()]
loadData of io.netty#netty-common;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-transport-native-epoll;4.0.27.Final→io.netty#netty-buffer;4.0.27.Final [compile→master()]
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
loadData of io.netty#netty-buffer;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-transport-native-epoll;4.0.27.Final→io.netty#netty-buffer;4.0.27.Final [compile→compile()]
loadData of io.netty#netty-buffer;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-transport-native-epoll;4.0.27.Final→io.netty#netty-transport;4.0.27.Final [compile→master()]
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
loadData of io.netty#netty-transport;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-transport-native-epoll;4.0.27.Final→io.netty#netty-transport;4.0.27.Final [compile→compile()]
loadData of io.netty#netty-transport;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-transport-native-epoll;4.0.27.Final→io.netty#netty-common;4.0.27.Final [runtime→runtime()]
loadData of io.netty#netty-common;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-transport-native-epoll;4.0.27.Final→io.netty#netty-common;4.0.27.Final [runtime→compile]
loadData of io.netty#netty-common;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-transport-native-epoll;4.0.27.Final→io.netty#netty-buffer;4.0.27.Final [runtime→runtime()]
loadData of io.netty#netty-buffer;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-transport-native-epoll;4.0.27.Final→io.netty#netty-buffer;4.0.27.Final [runtime→compile]
loadData of io.netty#netty-buffer;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-transport-native-epoll;4.0.27.Final→io.netty#netty-transport;4.0.27.Final [runtime→runtime()]
loadData of io.netty#netty-transport;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-transport-native-epoll;4.0.27.Final→io.netty#netty-transport;4.0.27.Final [runtime→compile]
loadData of io.netty#netty-transport;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty;0.4.9→io.netty#netty-transport-native-epoll;4.0.27.Final [runtime→compile()]
loadData of io.netty#netty-transport-native-epoll;4.0.27.Final of rootConf=default
== resolving dependencies io.reactivex#rxnetty;0.4.9→org.slf4j#slf4j-api;1.7.25 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty;0.4.9→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty;0.4.9→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty;0.4.9→org.slf4j#slf4j-api;1.7.25 [runtime→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxnetty;0.4.9 [runtime→compile()]
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxnetty-contexts;0.4.9 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of io.reactivex#rxnetty-contexts;0.4.9 of rootConf=default
using downloadGrapes to resolve io.reactivex#rxnetty-contexts;0.4.9
downloadGrapes: Checking cache for: dependency: io.reactivex#rxnetty-contexts;0.4.9 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/io.reactivex/rxnetty-contexts/ivy-0.4.9.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for io.reactivex#rxnetty-contexts;0.4.9 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/io.reactivex/rxnetty-contexts/ivy-0.4.9.xml
downloadGrapes: module revision found in cache: io.reactivex#rxnetty-contexts;0.4.9
found io.reactivex#rxnetty-contexts;0.4.9 in localm2
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxnetty-contexts;0.4.9 [runtime→runtime()]
loadData of io.reactivex#rxnetty-contexts;0.4.9 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxnetty-contexts;0.4.9 [runtime→compile]
loadData of io.reactivex#rxnetty-contexts;0.4.9 of rootConf=default
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies io.reactivex#rxnetty-contexts;0.4.9→io.reactivex#rxjava;1.2.0 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-contexts;0.4.9→io.reactivex#rxjava;1.2.0 [runtime→runtime()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-contexts;0.4.9→io.reactivex#rxjava;1.2.0 [runtime→compile]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-contexts;0.4.9→io.reactivex#rxjava;1.2.0 [runtime→compile()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-contexts;0.4.9→io.reactivex#rxnetty;0.4.9 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-contexts;0.4.9→io.reactivex#rxnetty;0.4.9 [runtime→runtime()]
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-contexts;0.4.9→io.reactivex#rxnetty;0.4.9 [runtime→compile]
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-contexts;0.4.9→io.reactivex#rxnetty;0.4.9 [runtime→compile()]
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxnetty-contexts;0.4.9 [runtime→compile()]
loadData of io.reactivex#rxnetty-contexts;0.4.9 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxnetty-servo;0.4.9 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of io.reactivex#rxnetty-servo;0.4.9 of rootConf=default
using downloadGrapes to resolve io.reactivex#rxnetty-servo;0.4.9
downloadGrapes: Checking cache for: dependency: io.reactivex#rxnetty-servo;0.4.9 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/io.reactivex/rxnetty-servo/ivy-0.4.9.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for io.reactivex#rxnetty-servo;0.4.9 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/io.reactivex/rxnetty-servo/ivy-0.4.9.xml
downloadGrapes: module revision found in cache: io.reactivex#rxnetty-servo;0.4.9
found io.reactivex#rxnetty-servo;0.4.9 in localm2
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxnetty-servo;0.4.9 [runtime→runtime()]
loadData of io.reactivex#rxnetty-servo;0.4.9 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxnetty-servo;0.4.9 [runtime→compile]
loadData of io.reactivex#rxnetty-servo;0.4.9 of rootConf=default
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
== resolving dependencies io.reactivex#rxnetty-servo;0.4.9→io.reactivex#rxjava;1.2.0 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-servo;0.4.9→io.reactivex#rxjava;1.2.0 [runtime→runtime()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-servo;0.4.9→io.reactivex#rxjava;1.2.0 [runtime→compile]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-servo;0.4.9→io.reactivex#rxjava;1.2.0 [runtime→compile()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-servo;0.4.9→io.reactivex#rxnetty;0.4.9 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-servo;0.4.9→io.reactivex#rxnetty;0.4.9 [runtime→runtime()]
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-servo;0.4.9→io.reactivex#rxnetty;0.4.9 [runtime→compile]
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-servo;0.4.9→io.reactivex#rxnetty;0.4.9 [runtime→compile()]
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-servo;0.4.9→com.netflix.servo#servo-core;0.10.1 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-servo;0.4.9→com.netflix.servo#servo-core;0.10.1 [runtime→runtime()]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-servo;0.4.9→com.netflix.servo#servo-core;0.10.1 [runtime→compile]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-servo;0.4.9→com.netflix.servo#servo-core;0.10.1 [runtime→compile()]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxnetty-servo;0.4.9 [runtime→compile()]
loadData of io.reactivex#rxnetty-servo;0.4.9 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→javax.inject#javax.inject;1 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→javax.inject#javax.inject;1 [runtime→runtime()]
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→javax.inject#javax.inject;1 [runtime→compile]
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→javax.inject#javax.inject;1 [runtime→compile()]
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→master()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.google.guava#guava;18.0 [runtime→master()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.google.guava#guava;18.0 [runtime→runtime()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.google.guava#guava;18.0 [runtime→compile]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.google.guava#guava;18.0 [runtime→compile()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→master()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→runtime()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.ribbon#ribbon-transport;2.2.5 [runtime→compile()]
loadData of com.netflix.ribbon#ribbon-transport;2.2.5 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.hystrix#hystrix-core;1.5.12 [runtime→master()]
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of com.netflix.hystrix#hystrix-core;1.5.12 of rootConf=default
using downloadGrapes to resolve com.netflix.hystrix#hystrix-core;1.5.12
downloadGrapes: Checking cache for: dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.hystrix/hystrix-core/ivy-1.5.12.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.hystrix#hystrix-core;1.5.12 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.hystrix/hystrix-core/ivy-1.5.12.xml
downloadGrapes: module revision found in cache: com.netflix.hystrix#hystrix-core;1.5.12
found com.netflix.hystrix#hystrix-core;1.5.12 in localm2
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.hystrix#hystrix-core;1.5.12 [runtime→runtime()]
loadData of com.netflix.hystrix#hystrix-core;1.5.12 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.hystrix#hystrix-core;1.5.12 [runtime→compile]
loadData of com.netflix.hystrix#hystrix-core;1.5.12 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→com.netflix.archaius#archaius-core;0.7.4 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→com.netflix.archaius#archaius-core;0.7.4 [compile→compile()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→io.reactivex#rxjava;1.2.0 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→io.reactivex#rxjava;1.2.0 [compile→compile()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→org.hdrhistogram#HdrHistogram;2.1.9 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of org.hdrhistogram#HdrHistogram;2.1.9 of rootConf=default
using downloadGrapes to resolve org.hdrhistogram#HdrHistogram;2.1.9
downloadGrapes: Checking cache for: dependency: org.hdrhistogram#HdrHistogram;2.1.9 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.hdrhistogram/HdrHistogram/ivy-2.1.9.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.hdrhistogram#HdrHistogram;2.1.9 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.hdrhistogram/HdrHistogram/ivy-2.1.9.xml
downloadGrapes: module revision found in cache: org.hdrhistogram#HdrHistogram;2.1.9
found org.hdrhistogram#HdrHistogram;2.1.9 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→org.hdrhistogram#HdrHistogram;2.1.9 [compile→compile()]
loadData of org.hdrhistogram#HdrHistogram;2.1.9 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→org.hdrhistogram#HdrHistogram;2.1.9 [compile→runtime()]
loadData of org.hdrhistogram#HdrHistogram;2.1.9 of rootConf=default
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→org.hdrhistogram#HdrHistogram;2.1.9 [compile→compile]
loadData of org.hdrhistogram#HdrHistogram;2.1.9 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→org.slf4j#slf4j-api;1.7.25 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→org.slf4j#slf4j-api;1.7.25 [runtime→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→com.netflix.archaius#archaius-core;0.7.4 [runtime→runtime()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→io.reactivex#rxjava;1.2.0 [runtime→runtime()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→io.reactivex#rxjava;1.2.0 [runtime→compile]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→org.hdrhistogram#HdrHistogram;2.1.9 [runtime→runtime()]
loadData of org.hdrhistogram#HdrHistogram;2.1.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→org.hdrhistogram#HdrHistogram;2.1.9 [runtime→compile]
loadData of org.hdrhistogram#HdrHistogram;2.1.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.hystrix#hystrix-core;1.5.12 [runtime→compile()]
loadData of com.netflix.hystrix#hystrix-core;1.5.12 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→javax.inject#javax.inject;1 [runtime→master()]
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→javax.inject#javax.inject;1 [runtime→runtime()]
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→javax.inject#javax.inject;1 [runtime→compile]
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→javax.inject#javax.inject;1 [runtime→compile()]
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→io.reactivex#rxjava;1.2.0 [runtime→master()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→io.reactivex#rxjava;1.2.0 [runtime→runtime()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→io.reactivex#rxjava;1.2.0 [runtime→compile]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→io.reactivex#rxjava;1.2.0 [runtime→compile()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→io.reactivex#rxnetty;0.4.9 [runtime→master()]
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→io.reactivex#rxnetty;0.4.9 [runtime→runtime()]
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→io.reactivex#rxnetty;0.4.9 [runtime→compile]
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→io.reactivex#rxnetty;0.4.9 [runtime→compile()]
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→commons-configuration#commons-configuration;1.8 [runtime→master()]
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→commons-configuration#commons-configuration;1.8 [runtime→runtime()]
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→commons-configuration#commons-configuration;1.8 [runtime→compile]
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→commons-configuration#commons-configuration;1.8 [runtime→compile()]
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.google.guava#guava;18.0 [runtime→master()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.google.guava#guava;18.0 [runtime→runtime()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.google.guava#guava;18.0 [runtime→compile]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.google.guava#guava;18.0 [runtime→compile()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→master()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→runtime()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon-httpclient;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-httpclient;2.2.5 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon-httpclient;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-httpclient;2.2.5 of rootConf=default
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→compile()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→compile()]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→commons-collections#commons-collections;3.2.2 [runtime→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of commons-collections#commons-collections;3.2.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→commons-collections#commons-collections;3.2.2 [runtime→runtime()]
loadData of commons-collections#commons-collections;3.2.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→commons-collections#commons-collections;3.2.2 [runtime→compile]
loadData of commons-collections#commons-collections;3.2.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→commons-collections#commons-collections;3.2.2 [runtime→compile()]
loadData of commons-collections#commons-collections;3.2.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→org.apache.httpcomponents#httpclient;4.5.5 [runtime→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→org.apache.httpcomponents#httpclient;4.5.5 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→org.apache.httpcomponents#httpclient;4.5.5 [runtime→compile]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→org.apache.httpcomponents#httpclient;4.5.5 [runtime→compile()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.sun.jersey#jersey-client;1.19.1 [runtime→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.sun.jersey#jersey-client;1.19.1 of rootConf=default
using downloadGrapes to resolve com.sun.jersey#jersey-client;1.19.1
downloadGrapes: Checking cache for: dependency: com.sun.jersey#jersey-client;1.19.1 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.sun.jersey/jersey-client/ivy-1.19.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.sun.jersey#jersey-client;1.19.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.sun.jersey/jersey-client/ivy-1.19.1.xml
downloadGrapes: module revision found in cache: com.sun.jersey#jersey-client;1.19.1
found com.sun.jersey#jersey-client;1.19.1 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.sun.jersey#jersey-client;1.19.1 [runtime→runtime()]
loadData of com.sun.jersey#jersey-client;1.19.1 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.sun.jersey#jersey-client;1.19.1 [runtime→compile]
loadData of com.sun.jersey#jersey-client;1.19.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.sun.jersey#jersey-client;1.19.1 [runtime→compile()]
loadData of com.sun.jersey#jersey-client;1.19.1 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.sun.jersey.contribs#jersey-apache-client4;1.19.1 [runtime→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.sun.jersey.contribs#jersey-apache-client4;1.19.1 of rootConf=default
using downloadGrapes to resolve com.sun.jersey.contribs#jersey-apache-client4;1.19.1
downloadGrapes: Checking cache for: dependency: com.sun.jersey.contribs#jersey-apache-client4;1.19.1 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.sun.jersey.contribs/jersey-apache-client4/ivy-1.19.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.sun.jersey.contribs#jersey-apache-client4;1.19.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.sun.jersey.contribs/jersey-apache-client4/ivy-1.19.1.xml
downloadGrapes: module revision found in cache: com.sun.jersey.contribs#jersey-apache-client4;1.19.1
found com.sun.jersey.contribs#jersey-apache-client4;1.19.1 in localm2
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.sun.jersey.contribs#jersey-apache-client4;1.19.1 [runtime→runtime()]
loadData of com.sun.jersey.contribs#jersey-apache-client4;1.19.1 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.sun.jersey.contribs#jersey-apache-client4;1.19.1 [runtime→compile]
loadData of com.sun.jersey.contribs#jersey-apache-client4;1.19.1 of rootConf=default
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.sun.jersey.contribs#jersey-apache-client4;1.19.1→org.apache.httpcomponents#httpclient;4.5.5 [compile→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.sun.jersey.contribs#jersey-apache-client4;1.19.1→org.apache.httpcomponents#httpclient;4.5.5 [compile→compile()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.sun.jersey.contribs#jersey-apache-client4;1.19.1→org.apache.httpcomponents#httpclient;4.5.5 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.sun.jersey.contribs#jersey-apache-client4;1.19.1→org.apache.httpcomponents#httpclient;4.5.5 [runtime→compile]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.sun.jersey.contribs#jersey-apache-client4;1.19.1 [runtime→compile()]
loadData of com.sun.jersey.contribs#jersey-apache-client4;1.19.1 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.servo#servo-core;0.10.1 [runtime→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.servo#servo-core;0.10.1 [runtime→runtime()]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.servo#servo-core;0.10.1 [runtime→compile]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.servo#servo-core;0.10.1 [runtime→compile()]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.google.guava#guava;18.0 [runtime→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.google.guava#guava;18.0 [runtime→runtime()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.google.guava#guava;18.0 [runtime→compile]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.google.guava#guava;18.0 [runtime→compile()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→runtime()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.netflix-commons#netflix-commons-util;0.1.1 [runtime→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.netflix.netflix-commons#netflix-commons-util;0.1.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.netflix-commons#netflix-commons-util;0.1.1 [runtime→runtime()]
loadData of com.netflix.netflix-commons#netflix-commons-util;0.1.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.netflix-commons#netflix-commons-util;0.1.1 [runtime→compile]
loadData of com.netflix.netflix-commons#netflix-commons-util;0.1.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.netflix-commons#netflix-commons-util;0.1.1 [runtime→compile()]
loadData of com.netflix.netflix-commons#netflix-commons-util;0.1.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-consul-all/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-consul-all/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE in jcenter
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-consul-bus/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-consul-bus/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-consul/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-consul/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-consul-core/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-consul-core/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE→org.apache.httpcomponents#httpclient;4.5.2 [compile→master()]
loadData of org.apache.httpcomponents#httpclient;4.5.2 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE→org.apache.httpcomponents#httpclient;4.5.5 [compile→master()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE→org.apache.httpcomponents#httpclient;4.5.2 [compile→compile()]
loadData of org.apache.httpcomponents#httpclient;4.5.2 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE→org.apache.httpcomponents#httpclient;4.5.5 [compile→compile()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE→org.apache.httpcomponents#httpcore;4.4.5 [compile→master()]
loadData of org.apache.httpcomponents#httpcore;4.4.5 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE→org.apache.httpcomponents#httpcore;4.4.9 [compile→master()]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE→org.apache.httpcomponents#httpcore;4.4.5 [compile→compile()]
loadData of org.apache.httpcomponents#httpcore;4.4.5 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE→org.apache.httpcomponents#httpcore;4.4.9 [compile→compile()]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→com.ecwid.consul#consul-api;1.3.0 [compile→master()]
loadData of com.ecwid.consul#consul-api;1.3.0 of rootConf=default
using downloadGrapes to resolve com.ecwid.consul#consul-api;1.3.0
downloadGrapes: Checking cache for: dependency: com.ecwid.consul#consul-api;1.3.0 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.ecwid.consul/consul-api/ivy-1.3.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.ecwid.consul#consul-api;1.3.0 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.ecwid.consul/consul-api/ivy-1.3.0.xml
downloadGrapes: module revision found in cache: com.ecwid.consul#consul-api;1.3.0
found com.ecwid.consul#consul-api;1.3.0 in localm2
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→com.ecwid.consul#consul-api;1.3.0 [compile→compile()]
loadData of com.ecwid.consul#consul-api;1.3.0 of rootConf=default
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→com.google.code.gson#gson;2.3.1 [compile→master()]
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
loadData of com.google.code.gson#gson;2.3.1 of rootConf=default
using downloadGrapes to resolve com.google.code.gson#gson;2.3.1
downloadGrapes: Checking cache for: dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.google.code.gson/gson/ivy-2.3.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.google.code.gson#gson;2.3.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.google.code.gson/gson/ivy-2.3.1.xml
downloadGrapes: module revision found in cache: com.google.code.gson#gson;2.3.1
found com.google.code.gson#gson;2.3.1 in localm2
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→com.google.code.gson#gson;2.3.1 [compile→compile()]
loadData of com.google.code.gson#gson;2.3.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→org.apache.httpcomponents#httpcore;4.4.5 [compile→master()]
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
loadData of org.apache.httpcomponents#httpcore;4.4.5 of rootConf=default
default is evicted. Skip loading
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→org.apache.httpcomponents#httpcore;4.4.9 [compile→master()]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→org.apache.httpcomponents#httpcore;4.4.5 [compile→compile()]
loadData of org.apache.httpcomponents#httpcore;4.4.5 of rootConf=default
default is evicted. Skip loading
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→org.apache.httpcomponents#httpcore;4.4.9 [compile→compile()]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→org.apache.httpcomponents#httpclient;4.5.2 [compile→master()]
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
loadData of org.apache.httpcomponents#httpclient;4.5.2 of rootConf=default
default is evicted. Skip loading
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→org.apache.httpcomponents#httpclient;4.5.5 [compile→master()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→org.apache.httpcomponents#httpclient;4.5.2 [compile→compile()]
loadData of org.apache.httpcomponents#httpclient;4.5.2 of rootConf=default
default is evicted. Skip loading
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→org.apache.httpcomponents#httpclient;4.5.5 [compile→compile()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→com.google.code.gson#gson;2.3.1 [compile→master()]
loadData of com.google.code.gson#gson;2.3.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→com.google.code.gson#gson;2.3.1 [compile→compile()]
loadData of com.google.code.gson#gson;2.3.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.apache.httpcomponents#httpclient;4.5.2 [compile→master()]
loadData of org.apache.httpcomponents#httpclient;4.5.2 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.apache.httpcomponents#httpclient;4.5.5 [compile→master()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.apache.httpcomponents#httpclient;4.5.2 [compile→compile()]
loadData of org.apache.httpcomponents#httpclient;4.5.2 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.apache.httpcomponents#httpclient;4.5.5 [compile→compile()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.apache.httpcomponents#httpcore;4.4.5 [compile→master()]
loadData of org.apache.httpcomponents#httpcore;4.4.5 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.apache.httpcomponents#httpcore;4.4.9 [compile→master()]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.apache.httpcomponents#httpcore;4.4.5 [compile→compile()]
loadData of org.apache.httpcomponents#httpcore;4.4.5 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.apache.httpcomponents#httpcore;4.4.9 [compile→compile()]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-consul-binder/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-consul-binder/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-stream/ivy-1.3.3.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-stream/ivy-1.3.3.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE
found org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-actuator/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-actuator/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
found org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-actuator/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-actuator/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE
found org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [compile→runtime()]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [compile→compile]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-validation/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-validation/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE
found org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-el;8.5.31 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.apache.tomcat.embed#tomcat-embed-el;8.5.31 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-el;8.5.31 [compile→compile()]
loadData of org.apache.tomcat.embed#tomcat-embed-el;8.5.31 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE→org.hibernate#hibernate-validator;5.3.6.Final [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.hibernate#hibernate-validator;5.3.6.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE→org.hibernate#hibernate-validator;5.3.6.Final [compile→compile()]
loadData of org.hibernate#hibernate-validator;5.3.6.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE [compile→runtime()]
loadData of org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE [compile→compile]
loadData of org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-el;8.5.31 [runtime→runtime()]
loadData of org.apache.tomcat.embed#tomcat-embed-el;8.5.31 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-el;8.5.31 [runtime→compile]
loadData of org.apache.tomcat.embed#tomcat-embed-el;8.5.31 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE→org.hibernate#hibernate-validator;5.3.6.Final [runtime→runtime()]
loadData of org.hibernate#hibernate-validator;5.3.6.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE→org.hibernate#hibernate-validator;5.3.6.Final [runtime→compile]
loadData of org.hibernate#hibernate-validator;5.3.6.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework#spring-messaging;4.3.18.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-messaging/ivy-4.3.18.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework#spring-messaging;4.3.18.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-messaging/ivy-4.3.18.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework#spring-messaging;4.3.18.RELEASE
found org.springframework#spring-messaging;4.3.18.RELEASE in localm2
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
== resolving dependencies org.springframework#spring-messaging;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-messaging;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-messaging;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-messaging;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-messaging;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-messaging;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [compile→runtime()]
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [compile→compile]
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
== resolving dependencies org.springframework#spring-messaging;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-messaging;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-messaging;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-messaging;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-messaging;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-messaging;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.integration#spring-integration-core;4.3.17.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.integration/spring-integration-core/ivy-4.3.17.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.integration#spring-integration-core;4.3.17.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.integration/spring-integration-core/ivy-4.3.17.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.integration#spring-integration-core;4.3.17.RELEASE
found org.springframework.integration#spring-integration-core;4.3.17.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [compile→compile()]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-tx;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-tx;4.3.18.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework#spring-tx;4.3.18.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-tx/ivy-4.3.18.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework#spring-tx;4.3.18.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-tx/ivy-4.3.18.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework#spring-tx;4.3.18.RELEASE
found org.springframework#spring-tx;4.3.18.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-tx;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-tx;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework#spring-tx;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tx;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tx;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tx;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework.retry#spring-retry;1.2.2.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework.retry#spring-retry;1.2.2.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.retry#spring-retry;1.2.2.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.retry/spring-retry/ivy-1.2.2.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.retry#spring-retry;1.2.2.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.retry/spring-retry/ivy-1.2.2.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.retry#spring-retry;1.2.2.RELEASE
found org.springframework.retry#spring-retry;1.2.2.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.13.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework.retry#spring-retry;1.2.2.RELEASE [compile→compile()]
loadData of org.springframework.retry#spring-retry;1.2.2.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.13.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.retry#spring-retry;1.2.2.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.13.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.13.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.13.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.13.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.13.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.retry#spring-retry;1.2.2.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework.retry#spring-retry;1.2.2.RELEASE [compile→runtime()]
loadData of org.springframework.retry#spring-retry;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework.retry#spring-retry;1.2.2.RELEASE [compile→compile]
loadData of org.springframework.retry#spring-retry;1.2.2.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.13.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.retry#spring-retry;1.2.2.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.retry#spring-retry;1.2.2.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [compile→runtime()]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [compile→compile]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-tx;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-tx;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-tx;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-tx;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework#spring-tx;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tx;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tx;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tx;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework.retry#spring-retry;1.2.2.RELEASE [runtime→runtime()]
loadData of org.springframework.retry#spring-retry;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework.retry#spring-retry;1.2.2.RELEASE [runtime→compile]
loadData of org.springframework.retry#spring-retry;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.integration/spring-integration-jmx/ivy-4.3.17.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.integration/spring-integration-jmx/ivy-4.3.17.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE
found org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE [compile→compile()]
loadData of org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [compile→compile()]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE [compile→runtime()]
loadData of org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE [compile→compile]
loadData of org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [runtime→runtime()]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [runtime→compile]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework#spring-tuple;1.0.0.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-tuple;1.0.0.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework#spring-tuple;1.0.0.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework#spring-tuple;1.0.0.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-tuple/ivy-1.0.0.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework#spring-tuple;1.0.0.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-tuple/ivy-1.0.0.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework#spring-tuple;1.0.0.RELEASE
found org.springframework#spring-tuple;1.0.0.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework#spring-tuple;1.0.0.RELEASE [compile→compile()]
loadData of org.springframework#spring-tuple;1.0.0.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→com.esotericsoftware#kryo-shaded;3.0.3 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of com.esotericsoftware#kryo-shaded;3.0.3 of rootConf=default
using downloadGrapes to resolve com.esotericsoftware#kryo-shaded;3.0.3
downloadGrapes: Checking cache for: dependency: com.esotericsoftware#kryo-shaded;3.0.3 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.esotericsoftware/kryo-shaded/ivy-3.0.3.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.esotericsoftware#kryo-shaded;3.0.3 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.esotericsoftware/kryo-shaded/ivy-3.0.3.xml
downloadGrapes: module revision found in cache: com.esotericsoftware#kryo-shaded;3.0.3
found com.esotericsoftware#kryo-shaded;3.0.3 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→com.esotericsoftware#kryo-shaded;3.0.3 [compile→compile()]
loadData of com.esotericsoftware#kryo-shaded;3.0.3 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.esotericsoftware#kryo-shaded;3.0.3→com.esotericsoftware#minlog;1.3.0 [compile→master()]
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of com.esotericsoftware#minlog;1.3.0 of rootConf=default
using downloadGrapes to resolve com.esotericsoftware#minlog;1.3.0
downloadGrapes: Checking cache for: dependency: com.esotericsoftware#minlog;1.3.0 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.esotericsoftware/minlog/ivy-1.3.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.esotericsoftware#minlog;1.3.0 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.esotericsoftware/minlog/ivy-1.3.0.xml
downloadGrapes: module revision found in cache: com.esotericsoftware#minlog;1.3.0
found com.esotericsoftware#minlog;1.3.0 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.esotericsoftware#kryo-shaded;3.0.3→com.esotericsoftware#minlog;1.3.0 [compile→compile()]
loadData of com.esotericsoftware#minlog;1.3.0 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.esotericsoftware#kryo-shaded;3.0.3→org.objenesis#objenesis;2.1 [compile→master()]
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.objenesis#objenesis;2.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.esotericsoftware#kryo-shaded;3.0.3→org.objenesis#objenesis;2.1 [compile→compile()]
loadData of org.objenesis#objenesis;2.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework#spring-tuple;1.0.0.RELEASE [compile→runtime()]
loadData of org.springframework#spring-tuple;1.0.0.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework#spring-tuple;1.0.0.RELEASE [compile→compile]
loadData of org.springframework#spring-tuple;1.0.0.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→com.esotericsoftware#kryo-shaded;3.0.3 [runtime→runtime()]
loadData of com.esotericsoftware#kryo-shaded;3.0.3 of rootConf=default
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→com.esotericsoftware#kryo-shaded;3.0.3 [runtime→compile]
loadData of com.esotericsoftware#kryo-shaded;3.0.3 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.esotericsoftware#kryo-shaded;3.0.3→com.esotericsoftware#minlog;1.3.0 [runtime→runtime()]
loadData of com.esotericsoftware#minlog;1.3.0 of rootConf=default
== resolving dependencies com.esotericsoftware#kryo-shaded;3.0.3→com.esotericsoftware#minlog;1.3.0 [runtime→compile]
loadData of com.esotericsoftware#minlog;1.3.0 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.esotericsoftware#kryo-shaded;3.0.3→org.objenesis#objenesis;2.1 [runtime→runtime()]
loadData of org.objenesis#objenesis;2.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.esotericsoftware#kryo-shaded;3.0.3→org.objenesis#objenesis;2.1 [runtime→compile]
loadData of org.objenesis#objenesis;2.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.integration/spring-integration-tuple/ivy-1.0.0.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.integration/spring-integration-tuple/ivy-1.0.0.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE
found org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE [compile→compile()]
loadData of org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE→org.springframework#spring-tuple;1.0.0.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework#spring-tuple;1.0.0.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE→org.springframework#spring-tuple;1.0.0.RELEASE [compile→compile()]
loadData of org.springframework#spring-tuple;1.0.0.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [compile→compile()]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE [compile→runtime()]
loadData of org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE [compile→compile]
loadData of org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE→org.springframework#spring-tuple;1.0.0.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-tuple;1.0.0.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE→org.springframework#spring-tuple;1.0.0.RELEASE [runtime→compile]
loadData of org.springframework#spring-tuple;1.0.0.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [runtime→runtime()]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [runtime→compile]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.retry#spring-retry;1.2.2.RELEASE [compile→master()]
loadData of org.springframework.retry#spring-retry;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.retry#spring-retry;1.2.2.RELEASE [compile→compile()]
loadData of org.springframework.retry#spring-retry;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [compile→default]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [compile→runtime]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [runtime→runtime()]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [runtime→compile]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE [runtime→runtime()]
loadData of org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE [runtime→compile]
loadData of org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework#spring-tuple;1.0.0.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-tuple;1.0.0.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework#spring-tuple;1.0.0.RELEASE [runtime→compile]
loadData of org.springframework#spring-tuple;1.0.0.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE [runtime→runtime()]
loadData of org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE [runtime→compile]
loadData of org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.retry#spring-retry;1.2.2.RELEASE [runtime→runtime()]
loadData of org.springframework.retry#spring-retry;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.retry#spring-retry;1.2.2.RELEASE [runtime→compile]
loadData of org.springframework.retry#spring-retry;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [compile→master]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-bus/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-bus/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [compile→master()]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [compile→compile()]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE→org.apache.httpcomponents#httpclient;4.5.2 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpclient;4.5.2 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE→org.apache.httpcomponents#httpclient;4.5.5 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE→org.apache.httpcomponents#httpclient;4.5.5 [runtime→compile]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE→org.apache.httpcomponents#httpcore;4.4.5 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpcore;4.4.5 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE→org.apache.httpcomponents#httpcore;4.4.9 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE→org.apache.httpcomponents#httpcore;4.4.9 [runtime→compile]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→com.ecwid.consul#consul-api;1.3.0 [runtime→runtime()]
loadData of com.ecwid.consul#consul-api;1.3.0 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→com.ecwid.consul#consul-api;1.3.0 [runtime→compile]
loadData of com.ecwid.consul#consul-api;1.3.0 of rootConf=default
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→com.google.code.gson#gson;2.3.1 [runtime→runtime()]
loadData of com.google.code.gson#gson;2.3.1 of rootConf=default
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→com.google.code.gson#gson;2.3.1 [runtime→compile]
loadData of com.google.code.gson#gson;2.3.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→org.apache.httpcomponents#httpcore;4.4.5 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpcore;4.4.5 of rootConf=default
default is evicted. Skip loading
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→org.apache.httpcomponents#httpcore;4.4.9 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→org.apache.httpcomponents#httpcore;4.4.9 [runtime→compile]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→org.apache.httpcomponents#httpclient;4.5.2 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpclient;4.5.2 of rootConf=default
default is evicted. Skip loading
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→org.apache.httpcomponents#httpclient;4.5.5 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→org.apache.httpcomponents#httpclient;4.5.5 [runtime→compile]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→com.google.code.gson#gson;2.3.1 [runtime→runtime()]
loadData of com.google.code.gson#gson;2.3.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→com.google.code.gson#gson;2.3.1 [runtime→compile]
loadData of com.google.code.gson#gson;2.3.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.apache.httpcomponents#httpclient;4.5.2 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpclient;4.5.2 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.apache.httpcomponents#httpclient;4.5.5 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.apache.httpcomponents#httpclient;4.5.5 [runtime→compile]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.apache.httpcomponents#httpcore;4.4.5 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpcore;4.4.5 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.apache.httpcomponents#httpcore;4.4.9 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.apache.httpcomponents#httpcore;4.4.9 [runtime→compile]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [runtime→runtime()]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [runtime→compile]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-consul-config/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-consul-config/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-consul-config/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-consul-config/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-consul-discovery/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-consul-discovery/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-consul-discovery/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-consul-discovery/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-ribbon/ivy-1.4.5.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-ribbon/ivy-1.4.5.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE
found org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-netflix-ribbon/ivy-1.4.5.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-netflix-ribbon/ivy-1.4.5.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE
found org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon;2.2.5 [compile→master()]
loadData of com.netflix.ribbon#ribbon;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon;2.2.5 [compile→compile()]
loadData of com.netflix.ribbon#ribbon;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon-core;2.2.5 [compile→master()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon-core;2.2.5 [compile→compile()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon-httpclient;2.2.5 [compile→master()]
loadData of com.netflix.ribbon#ribbon-httpclient;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon-httpclient;2.2.5 [compile→compile()]
loadData of com.netflix.ribbon#ribbon-httpclient;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [compile→master()]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [compile→compile()]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→io.reactivex#rxjava;1.2.0 [compile→master()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→io.reactivex#rxjava;1.2.0 [compile→compile()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→joda-time#joda-time;2.7 [compile→master()]
loadData of joda-time#joda-time;2.7 of rootConf=default
using downloadGrapes to resolve joda-time#joda-time;2.7
downloadGrapes: Checking cache for: dependency: joda-time#joda-time;2.7 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/joda-time/joda-time/ivy-2.7.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for joda-time#joda-time;2.7 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/joda-time/joda-time/ivy-2.7.xml
downloadGrapes: module revision found in cache: joda-time#joda-time;2.7
found joda-time#joda-time;2.7 in localm2
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→joda-time#joda-time;2.7 [compile→compile()]
loadData of joda-time#joda-time;2.7 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon-httpclient;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-httpclient;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon-httpclient;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-httpclient;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→io.reactivex#rxjava;1.2.0 [runtime→runtime()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→io.reactivex#rxjava;1.2.0 [runtime→compile]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→joda-time#joda-time;2.7 [runtime→runtime()]
loadData of joda-time#joda-time;2.7 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→joda-time#joda-time;2.7 [runtime→compile]
loadData of joda-time#joda-time;2.7 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-security/ivy-1.2.3.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-security/ivy-1.2.3.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE
found org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE in jcenter
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-security/ivy-1.2.3.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-security/ivy-1.2.3.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE
found org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE→org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-security/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-security/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE
found org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE→org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework.security#spring-security-config;4.2.7.RELEASE [compile→master()]
loadData of org.springframework.security#spring-security-config;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework.security#spring-security-config;4.2.7.RELEASE [compile→compile()]
loadData of org.springframework.security#spring-security-config;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework.security#spring-security-web;4.2.7.RELEASE [compile→master()]
loadData of org.springframework.security#spring-security-web;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework.security#spring-security-web;4.2.7.RELEASE [compile→compile()]
loadData of org.springframework.security#spring-security-web;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE→org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE→org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework.security#spring-security-config;4.2.7.RELEASE [runtime→runtime()]
loadData of org.springframework.security#spring-security-config;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework.security#spring-security-config;4.2.7.RELEASE [runtime→compile]
loadData of org.springframework.security#spring-security-config;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework.security#spring-security-web;4.2.7.RELEASE [runtime→runtime()]
loadData of org.springframework.security#spring-security-web;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework.security#spring-security-web;4.2.7.RELEASE [runtime→compile]
loadData of org.springframework.security#spring-security-web;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-aws/ivy-1.2.3.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-aws/ivy-1.2.3.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE
found org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE in jcenter
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-aws-context/ivy-1.2.3.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-aws-context/ivy-1.2.3.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE
found org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-aws-core/ivy-1.2.3.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-aws-core/ivy-1.2.3.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE
found org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-core;1.11.125 [compile→master()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
using downloadGrapes to resolve com.amazonaws#aws-java-sdk-core;1.11.125
downloadGrapes: Checking cache for: dependency: com.amazonaws#aws-java-sdk-core;1.11.125 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.amazonaws/aws-java-sdk-core/ivy-1.11.125.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.amazonaws#aws-java-sdk-core;1.11.125 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.amazonaws/aws-java-sdk-core/ivy-1.11.125.xml
downloadGrapes: module revision found in cache: com.amazonaws#aws-java-sdk-core;1.11.125
found com.amazonaws#aws-java-sdk-core;1.11.125 in localm2
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-core;1.11.125 [compile→compile()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→commons-logging#commons-logging;1.1.3 [compile→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
loadData of commons-logging#commons-logging;1.1.3 of rootConf=default
default is evicted. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→commons-logging#commons-logging;1.2 [compile→master()]
loadData of commons-logging#commons-logging;1.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→commons-logging#commons-logging;1.1.3 [compile→compile()]
loadData of commons-logging#commons-logging;1.1.3 of rootConf=default
default is evicted. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→commons-logging#commons-logging;1.2 [compile→compile()]
loadData of commons-logging#commons-logging;1.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→org.apache.httpcomponents#httpclient;4.5.5 [compile→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→org.apache.httpcomponents#httpclient;4.5.5 [compile→compile()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→software.amazon.ion#ion-java;1.0.2 [compile→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
loadData of software.amazon.ion#ion-java;1.0.2 of rootConf=default
using downloadGrapes to resolve software.amazon.ion#ion-java;1.0.2
downloadGrapes: Checking cache for: dependency: software.amazon.ion#ion-java;1.0.2 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/software.amazon.ion/ion-java/ivy-1.0.2.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for software.amazon.ion#ion-java;1.0.2 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/software.amazon.ion/ion-java/ivy-1.0.2.xml
downloadGrapes: module revision found in cache: software.amazon.ion#ion-java;1.0.2
found software.amazon.ion#ion-java;1.0.2 in localm2
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→software.amazon.ion#ion-java;1.0.2 [compile→compile()]
loadData of software.amazon.ion#ion-java;1.0.2 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 [compile→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 of rootConf=default
using downloadGrapes to resolve com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11
downloadGrapes: Checking cache for: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.dataformat/jackson-dataformat-cbor/ivy-2.8.11.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.dataformat/jackson-dataformat-cbor/ivy-2.8.11.xml
downloadGrapes: module revision found in cache: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11
found com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 in localm2
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {test=[runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {test=[runtime(), master()]}
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 [compile→compile()]
loadData of com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {test=[runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {test=[runtime(), master()]}
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11→com.fasterxml.jackson.core#jackson-core;2.8.11 [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {test=[runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {test=[runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {test=[runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {test=[runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11→com.fasterxml.jackson.core#jackson-core;2.8.11 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→joda-time#joda-time;2.9.9 [compile→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
loadData of joda-time#joda-time;2.9.9 of rootConf=default
using downloadGrapes to resolve joda-time#joda-time;2.9.9
downloadGrapes: Checking cache for: dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/joda-time/joda-time/ivy-2.9.9.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for joda-time#joda-time;2.9.9 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/joda-time/joda-time/ivy-2.9.9.xml
downloadGrapes: module revision found in cache: joda-time#joda-time;2.9.9
found joda-time#joda-time;2.9.9 in localm2
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→joda-time#joda-time;2.9.9 [compile→compile()]
loadData of joda-time#joda-time;2.9.9 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→joda-time#joda-time;2.9.9 [compile→runtime()]
loadData of joda-time#joda-time;2.9.9 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→joda-time#joda-time;2.9.9 [compile→compile]
loadData of joda-time#joda-time;2.9.9 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-s3;1.11.125 [compile→master()]
loadData of com.amazonaws#aws-java-sdk-s3;1.11.125 of rootConf=default
using downloadGrapes to resolve com.amazonaws#aws-java-sdk-s3;1.11.125
downloadGrapes: Checking cache for: dependency: com.amazonaws#aws-java-sdk-s3;1.11.125 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.amazonaws/aws-java-sdk-s3/ivy-1.11.125.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.amazonaws#aws-java-sdk-s3;1.11.125 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.amazonaws/aws-java-sdk-s3/ivy-1.11.125.xml
downloadGrapes: module revision found in cache: com.amazonaws#aws-java-sdk-s3;1.11.125
found com.amazonaws#aws-java-sdk-s3;1.11.125 in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-s3;1.11.125 [compile→compile()]
loadData of com.amazonaws#aws-java-sdk-s3;1.11.125 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-s3;1.11.125→com.amazonaws#aws-java-sdk-kms;1.11.125 [compile→master()]
loadData of com.amazonaws#aws-java-sdk-kms;1.11.125 of rootConf=default
using downloadGrapes to resolve com.amazonaws#aws-java-sdk-kms;1.11.125
downloadGrapes: Checking cache for: dependency: com.amazonaws#aws-java-sdk-kms;1.11.125 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.amazonaws/aws-java-sdk-kms/ivy-1.11.125.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.amazonaws#aws-java-sdk-kms;1.11.125 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.amazonaws/aws-java-sdk-kms/ivy-1.11.125.xml
downloadGrapes: module revision found in cache: com.amazonaws#aws-java-sdk-kms;1.11.125
found com.amazonaws#aws-java-sdk-kms;1.11.125 in localm2
== resolving dependencies com.amazonaws#aws-java-sdk-s3;1.11.125→com.amazonaws#aws-java-sdk-kms;1.11.125 [compile→compile()]
loadData of com.amazonaws#aws-java-sdk-kms;1.11.125 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-kms;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [compile→master()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-kms;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [compile→compile()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-kms;1.11.125→com.amazonaws#jmespath-java;1.11.125 [compile→master()]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
using downloadGrapes to resolve com.amazonaws#jmespath-java;1.11.125
downloadGrapes: Checking cache for: dependency: com.amazonaws#jmespath-java;1.11.125 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.amazonaws/jmespath-java/ivy-1.11.125.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.amazonaws#jmespath-java;1.11.125 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.amazonaws/jmespath-java/ivy-1.11.125.xml
downloadGrapes: module revision found in cache: com.amazonaws#jmespath-java;1.11.125
found com.amazonaws#jmespath-java;1.11.125 in localm2
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.amazonaws#aws-java-sdk-kms;1.11.125→com.amazonaws#jmespath-java;1.11.125 [compile→compile()]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.amazonaws#jmespath-java;1.11.125→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#jmespath-java;1.11.125→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-s3;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [compile→master()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-s3;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [compile→compile()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-s3;1.11.125→com.amazonaws#jmespath-java;1.11.125 [compile→master()]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-s3;1.11.125→com.amazonaws#jmespath-java;1.11.125 [compile→compile()]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-ec2;1.11.125 [compile→master()]
loadData of com.amazonaws#aws-java-sdk-ec2;1.11.125 of rootConf=default
using downloadGrapes to resolve com.amazonaws#aws-java-sdk-ec2;1.11.125
downloadGrapes: Checking cache for: dependency: com.amazonaws#aws-java-sdk-ec2;1.11.125 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.amazonaws/aws-java-sdk-ec2/ivy-1.11.125.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.amazonaws#aws-java-sdk-ec2;1.11.125 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.amazonaws/aws-java-sdk-ec2/ivy-1.11.125.xml
downloadGrapes: module revision found in cache: com.amazonaws#aws-java-sdk-ec2;1.11.125
found com.amazonaws#aws-java-sdk-ec2;1.11.125 in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-ec2;1.11.125 [compile→compile()]
loadData of com.amazonaws#aws-java-sdk-ec2;1.11.125 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-ec2;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [compile→master()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-ec2;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [compile→compile()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-ec2;1.11.125→com.amazonaws#jmespath-java;1.11.125 [compile→master()]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-ec2;1.11.125→com.amazonaws#jmespath-java;1.11.125 [compile→compile()]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-cloudformation;1.11.125 [compile→master()]
loadData of com.amazonaws#aws-java-sdk-cloudformation;1.11.125 of rootConf=default
using downloadGrapes to resolve com.amazonaws#aws-java-sdk-cloudformation;1.11.125
downloadGrapes: Checking cache for: dependency: com.amazonaws#aws-java-sdk-cloudformation;1.11.125 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.amazonaws/aws-java-sdk-cloudformation/ivy-1.11.125.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.amazonaws#aws-java-sdk-cloudformation;1.11.125 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.amazonaws/aws-java-sdk-cloudformation/ivy-1.11.125.xml
downloadGrapes: module revision found in cache: com.amazonaws#aws-java-sdk-cloudformation;1.11.125
found com.amazonaws#aws-java-sdk-cloudformation;1.11.125 in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-cloudformation;1.11.125 [compile→compile()]
loadData of com.amazonaws#aws-java-sdk-cloudformation;1.11.125 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-cloudformation;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [compile→master()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-cloudformation;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [compile→compile()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-cloudformation;1.11.125→com.amazonaws#jmespath-java;1.11.125 [compile→master()]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-cloudformation;1.11.125→com.amazonaws#jmespath-java;1.11.125 [compile→compile()]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [compile→master()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [compile→master()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-core;1.11.125 [runtime→runtime()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-core;1.11.125 [runtime→compile]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→commons-logging#commons-logging;1.1.3 [runtime→runtime()]
loadData of commons-logging#commons-logging;1.1.3 of rootConf=default
default is evicted. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→commons-logging#commons-logging;1.2 [runtime→runtime()]
loadData of commons-logging#commons-logging;1.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→commons-logging#commons-logging;1.2 [runtime→compile]
loadData of commons-logging#commons-logging;1.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→org.apache.httpcomponents#httpclient;4.5.5 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→org.apache.httpcomponents#httpclient;4.5.5 [runtime→compile]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→software.amazon.ion#ion-java;1.0.2 [runtime→runtime()]
loadData of software.amazon.ion#ion-java;1.0.2 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→software.amazon.ion#ion-java;1.0.2 [runtime→compile]
loadData of software.amazon.ion#ion-java;1.0.2 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 [runtime→runtime()]
loadData of com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 [runtime→compile]
loadData of com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {test=[runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {test=[runtime(), master()]}
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→joda-time#joda-time;2.9.9 [runtime→runtime()]
loadData of joda-time#joda-time;2.9.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→joda-time#joda-time;2.9.9 [runtime→compile]
loadData of joda-time#joda-time;2.9.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-s3;1.11.125 [runtime→runtime()]
loadData of com.amazonaws#aws-java-sdk-s3;1.11.125 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-s3;1.11.125 [runtime→compile]
loadData of com.amazonaws#aws-java-sdk-s3;1.11.125 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-s3;1.11.125→com.amazonaws#aws-java-sdk-kms;1.11.125 [runtime→runtime()]
loadData of com.amazonaws#aws-java-sdk-kms;1.11.125 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-s3;1.11.125→com.amazonaws#aws-java-sdk-kms;1.11.125 [runtime→compile]
loadData of com.amazonaws#aws-java-sdk-kms;1.11.125 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-kms;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [runtime→runtime()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-kms;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [runtime→compile]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-kms;1.11.125→com.amazonaws#jmespath-java;1.11.125 [runtime→runtime()]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-kms;1.11.125→com.amazonaws#jmespath-java;1.11.125 [runtime→compile]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.amazonaws#jmespath-java;1.11.125→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#jmespath-java;1.11.125→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-s3;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [runtime→runtime()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-s3;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [runtime→compile]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-s3;1.11.125→com.amazonaws#jmespath-java;1.11.125 [runtime→runtime()]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-s3;1.11.125→com.amazonaws#jmespath-java;1.11.125 [runtime→compile]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-ec2;1.11.125 [runtime→runtime()]
loadData of com.amazonaws#aws-java-sdk-ec2;1.11.125 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-ec2;1.11.125 [runtime→compile]
loadData of com.amazonaws#aws-java-sdk-ec2;1.11.125 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-ec2;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [runtime→runtime()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-ec2;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [runtime→compile]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-ec2;1.11.125→com.amazonaws#jmespath-java;1.11.125 [runtime→runtime()]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-ec2;1.11.125→com.amazonaws#jmespath-java;1.11.125 [runtime→compile]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-cloudformation;1.11.125 [runtime→runtime()]
loadData of com.amazonaws#aws-java-sdk-cloudformation;1.11.125 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-cloudformation;1.11.125 [runtime→compile]
loadData of com.amazonaws#aws-java-sdk-cloudformation;1.11.125 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-cloudformation;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [runtime→runtime()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-cloudformation;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [runtime→compile]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-cloudformation;1.11.125→com.amazonaws#jmespath-java;1.11.125 [runtime→runtime()]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-cloudformation;1.11.125→com.amazonaws#jmespath-java;1.11.125 [runtime→compile]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-aws-autoconfigure/ivy-1.2.3.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-aws-autoconfigure/ivy-1.2.3.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE
found org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [compile→master()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [compile→master()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-netflix-eureka-client/ivy-1.4.5.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-netflix-eureka-client/ivy-1.4.5.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE
found org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE in localm2
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-netflix-eureka-client/ivy-1.4.5.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-netflix-eureka-client/ivy-1.4.5.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE
found org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.eureka#eureka-client;1.7.2 [compile→master()]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
using downloadGrapes to resolve com.netflix.eureka#eureka-client;1.7.2
downloadGrapes: Checking cache for: dependency: com.netflix.eureka#eureka-client;1.7.2 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.eureka/eureka-client/ivy-1.7.2.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.eureka#eureka-client;1.7.2 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.eureka/eureka-client/ivy-1.7.2.xml
downloadGrapes: module revision found in cache: com.netflix.eureka#eureka-client;1.7.2
found com.netflix.eureka#eureka-client;1.7.2 in localm2
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.eureka#eureka-client;1.7.2 [compile→compile()]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.eureka#eureka-client;1.7.2 [compile→runtime()]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.eureka#eureka-client;1.7.2 [compile→compile]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→org.codehaus.jettison#jettison;1.3.7 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of org.codehaus.jettison#jettison;1.3.7 of rootConf=default
using downloadGrapes to resolve org.codehaus.jettison#jettison;1.3.7
downloadGrapes: Checking cache for: dependency: org.codehaus.jettison#jettison;1.3.7 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.codehaus.jettison/jettison/ivy-1.3.7.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.codehaus.jettison#jettison;1.3.7 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.codehaus.jettison/jettison/ivy-1.3.7.xml
downloadGrapes: module revision found in cache: org.codehaus.jettison#jettison;1.3.7
found org.codehaus.jettison#jettison;1.3.7 in localm2
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→org.codehaus.jettison#jettison;1.3.7 [runtime→runtime()]
loadData of org.codehaus.jettison#jettison;1.3.7 of rootConf=default
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→org.codehaus.jettison#jettison;1.3.7 [runtime→compile]
loadData of org.codehaus.jettison#jettison;1.3.7 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.codehaus.jettison#jettison;1.3.7→stax#stax-api;1.0.1 [compile→master()]
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of stax#stax-api;1.0.1 of rootConf=default
using downloadGrapes to resolve stax#stax-api;1.0.1
downloadGrapes: Checking cache for: dependency: stax#stax-api;1.0.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/stax/stax-api/ivy-1.0.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for stax#stax-api;1.0.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/stax/stax-api/ivy-1.0.1.xml
downloadGrapes: module revision found in cache: stax#stax-api;1.0.1
found stax#stax-api;1.0.1 in localm2
== resolving dependencies org.codehaus.jettison#jettison;1.3.7→stax#stax-api;1.0.1 [compile→compile()]
loadData of stax#stax-api;1.0.1 of rootConf=default
== resolving dependencies org.codehaus.jettison#jettison;1.3.7→stax#stax-api;1.0.1 [compile→runtime()]
loadData of stax#stax-api;1.0.1 of rootConf=default
== resolving dependencies org.codehaus.jettison#jettison;1.3.7→stax#stax-api;1.0.1 [compile→compile]
loadData of stax#stax-api;1.0.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.codehaus.jettison#jettison;1.3.7→stax#stax-api;1.0.1 [runtime→runtime()]
loadData of stax#stax-api;1.0.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.codehaus.jettison#jettison;1.3.7→stax#stax-api;1.0.1 [runtime→compile]
loadData of stax#stax-api;1.0.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→org.codehaus.jettison#jettison;1.3.7 [runtime→compile()]
loadData of org.codehaus.jettison#jettison;1.3.7 of rootConf=default
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.netflix.netflix-commons#netflix-eventbus;0.3.0 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.netflix.netflix-commons#netflix-eventbus;0.3.0 of rootConf=default
using downloadGrapes to resolve com.netflix.netflix-commons#netflix-eventbus;0.3.0
downloadGrapes: Checking cache for: dependency: com.netflix.netflix-commons#netflix-eventbus;0.3.0 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.netflix-commons/netflix-eventbus/ivy-0.3.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.netflix-commons#netflix-eventbus;0.3.0 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.netflix-commons/netflix-eventbus/ivy-0.3.0.xml
downloadGrapes: module revision found in cache: com.netflix.netflix-commons#netflix-eventbus;0.3.0
found com.netflix.netflix-commons#netflix-eventbus;0.3.0 in localm2
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.netflix.netflix-commons#netflix-eventbus;0.3.0 [runtime→runtime()]
loadData of com.netflix.netflix-commons#netflix-eventbus;0.3.0 of rootConf=default
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.netflix.netflix-commons#netflix-eventbus;0.3.0 [runtime→compile]
loadData of com.netflix.netflix-commons#netflix-eventbus;0.3.0 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→org.slf4j#slf4j-api;1.7.25 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→org.slf4j#slf4j-api;1.7.25 [runtime→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→com.netflix.netflix-commons#netflix-infix;0.3.0 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.netflix.netflix-commons#netflix-infix;0.3.0 of rootConf=default
using downloadGrapes to resolve com.netflix.netflix-commons#netflix-infix;0.3.0
downloadGrapes: Checking cache for: dependency: com.netflix.netflix-commons#netflix-infix;0.3.0 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.netflix-commons/netflix-infix/ivy-0.3.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.netflix-commons#netflix-infix;0.3.0 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.netflix-commons/netflix-infix/ivy-0.3.0.xml
downloadGrapes: module revision found in cache: com.netflix.netflix-commons#netflix-infix;0.3.0
found com.netflix.netflix-commons#netflix-infix;0.3.0 in localm2
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→com.netflix.netflix-commons#netflix-infix;0.3.0 [runtime→runtime()]
loadData of com.netflix.netflix-commons#netflix-infix;0.3.0 of rootConf=default
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→com.netflix.netflix-commons#netflix-infix;0.3.0 [runtime→compile]
loadData of com.netflix.netflix-commons#netflix-infix;0.3.0 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.google.code.findbugs#jsr305;3.0.1 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→org.slf4j#slf4j-api;1.7.25 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.google.code.findbugs#jsr305;3.0.1 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→org.slf4j#slf4j-api;1.7.25 [runtime→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→commons-jxpath#commons-jxpath;1.3 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.google.code.findbugs#jsr305;3.0.1 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of commons-jxpath#commons-jxpath;1.3 of rootConf=default
using downloadGrapes to resolve commons-jxpath#commons-jxpath;1.3
downloadGrapes: Checking cache for: dependency: commons-jxpath#commons-jxpath;1.3 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/commons-jxpath/commons-jxpath/ivy-1.3.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for commons-jxpath#commons-jxpath;1.3 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/commons-jxpath/commons-jxpath/ivy-1.3.xml
downloadGrapes: module revision found in cache: commons-jxpath#commons-jxpath;1.3
found commons-jxpath#commons-jxpath;1.3 in localm2
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: xml-apis#xml-apis;1.3.04 {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: xml-apis#xml-apis;1.4.01 {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-beanutils#commons-beanutils;1.7.0 {optional=[compile(), master()]} ⇒ dependency: commons-beanutils#commons-beanutils;1.9.3 {optional=[compile(), master()]}
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→commons-jxpath#commons-jxpath;1.3 [runtime→runtime()]
loadData of commons-jxpath#commons-jxpath;1.3 of rootConf=default
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→commons-jxpath#commons-jxpath;1.3 [runtime→compile]
loadData of commons-jxpath#commons-jxpath;1.3 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: xml-apis#xml-apis;1.3.04 {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: xml-apis#xml-apis;1.4.01 {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-beanutils#commons-beanutils;1.7.0 {optional=[compile(), master()]} ⇒ dependency: commons-beanutils#commons-beanutils;1.9.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: xml-apis#xml-apis;1.3.04 {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: xml-apis#xml-apis;1.4.01 {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-beanutils#commons-beanutils;1.7.0 {optional=[compile(), master()]} ⇒ dependency: commons-beanutils#commons-beanutils;1.9.3 {optional=[compile(), master()]}
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→commons-jxpath#commons-jxpath;1.3 [runtime→compile()]
loadData of commons-jxpath#commons-jxpath;1.3 of rootConf=default
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→joda-time#joda-time;2.9.9 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.google.code.findbugs#jsr305;3.0.1 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of joda-time#joda-time;2.9.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→joda-time#joda-time;2.9.9 [runtime→runtime()]
loadData of joda-time#joda-time;2.9.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→joda-time#joda-time;2.9.9 [runtime→compile]
loadData of joda-time#joda-time;2.9.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→joda-time#joda-time;2.9.9 [runtime→compile()]
loadData of joda-time#joda-time;2.9.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→org.antlr#antlr-runtime;3.4 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.google.code.findbugs#jsr305;3.0.1 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of org.antlr#antlr-runtime;3.4 of rootConf=default
using downloadGrapes to resolve org.antlr#antlr-runtime;3.4
downloadGrapes: Checking cache for: dependency: org.antlr#antlr-runtime;3.4 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.antlr/antlr-runtime/ivy-3.4.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.antlr#antlr-runtime;3.4 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.antlr/antlr-runtime/ivy-3.4.xml
downloadGrapes: module revision found in cache: org.antlr#antlr-runtime;3.4
found org.antlr#antlr-runtime;3.4 in localm2
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→org.antlr#antlr-runtime;3.4 [runtime→runtime()]
loadData of org.antlr#antlr-runtime;3.4 of rootConf=default
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→org.antlr#antlr-runtime;3.4 [runtime→compile]
loadData of org.antlr#antlr-runtime;3.4 of rootConf=default
== resolving dependencies org.antlr#antlr-runtime;3.4→org.antlr#stringtemplate;3.2.1 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.google.code.findbugs#jsr305;3.0.1 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of org.antlr#stringtemplate;3.2.1 of rootConf=default
using downloadGrapes to resolve org.antlr#stringtemplate;3.2.1
downloadGrapes: Checking cache for: dependency: org.antlr#stringtemplate;3.2.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.antlr/stringtemplate/ivy-3.2.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.antlr#stringtemplate;3.2.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.antlr/stringtemplate/ivy-3.2.1.xml
downloadGrapes: module revision found in cache: org.antlr#stringtemplate;3.2.1
found org.antlr#stringtemplate;3.2.1 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.5 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.antlr#antlr-runtime;3.4→org.antlr#stringtemplate;3.2.1 [compile→compile()]
loadData of org.antlr#stringtemplate;3.2.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.5 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.antlr#stringtemplate;3.2.1→antlr#antlr;2.7.7 [compile→master()]
dependency descriptor has been mediated: dependency: junit#junit;4.5 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.5 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.5 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.5 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.5 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.google.code.findbugs#jsr305;3.0.1 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of antlr#antlr;2.7.7 of rootConf=default
using downloadGrapes to resolve antlr#antlr;2.7.7
downloadGrapes: Checking cache for: dependency: antlr#antlr;2.7.7 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/antlr/antlr/ivy-2.7.7.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for antlr#antlr;2.7.7 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/antlr/antlr/ivy-2.7.7.xml
downloadGrapes: module revision found in cache: antlr#antlr;2.7.7
found antlr#antlr;2.7.7 in localm2
== resolving dependencies org.antlr#stringtemplate;3.2.1→antlr#antlr;2.7.7 [compile→compile()]
loadData of antlr#antlr;2.7.7 of rootConf=default
== resolving dependencies org.antlr#stringtemplate;3.2.1→antlr#antlr;2.7.7 [compile→runtime()]
loadData of antlr#antlr;2.7.7 of rootConf=default
== resolving dependencies org.antlr#stringtemplate;3.2.1→antlr#antlr;2.7.7 [compile→compile]
loadData of antlr#antlr;2.7.7 of rootConf=default
== resolving dependencies org.antlr#antlr-runtime;3.4→org.antlr#stringtemplate;3.2.1 [compile→runtime()]
loadData of org.antlr#stringtemplate;3.2.1 of rootConf=default
== resolving dependencies org.antlr#antlr-runtime;3.4→org.antlr#stringtemplate;3.2.1 [compile→compile]
loadData of org.antlr#stringtemplate;3.2.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.5 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.antlr#stringtemplate;3.2.1→antlr#antlr;2.7.7 [runtime→runtime()]
loadData of antlr#antlr;2.7.7 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.antlr#stringtemplate;3.2.1→antlr#antlr;2.7.7 [runtime→compile]
loadData of antlr#antlr;2.7.7 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.antlr#antlr-runtime;3.4→antlr#antlr;2.7.7 [compile→master()]
loadData of antlr#antlr;2.7.7 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.antlr#antlr-runtime;3.4→antlr#antlr;2.7.7 [compile→compile()]
loadData of antlr#antlr;2.7.7 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.antlr#antlr-runtime;3.4→org.antlr#stringtemplate;3.2.1 [runtime→runtime()]
loadData of org.antlr#stringtemplate;3.2.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.antlr#antlr-runtime;3.4→org.antlr#stringtemplate;3.2.1 [runtime→compile]
loadData of org.antlr#stringtemplate;3.2.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.antlr#antlr-runtime;3.4→antlr#antlr;2.7.7 [runtime→runtime()]
loadData of antlr#antlr;2.7.7 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.antlr#antlr-runtime;3.4→antlr#antlr;2.7.7 [runtime→compile]
loadData of antlr#antlr;2.7.7 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→org.antlr#antlr-runtime;3.4 [runtime→compile()]
loadData of org.antlr#antlr-runtime;3.4 of rootConf=default
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→com.google.guava#guava;18.0 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.google.code.findbugs#jsr305;3.0.1 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→com.google.guava#guava;18.0 [runtime→runtime()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→com.google.guava#guava;18.0 [runtime→compile]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→com.google.guava#guava;18.0 [runtime→compile()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→com.google.code.gson#gson;2.8.5 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.google.code.findbugs#jsr305;3.0.1 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.google.code.gson#gson;2.8.5 of rootConf=default
using downloadGrapes to resolve com.google.code.gson#gson;2.8.5
downloadGrapes: Checking cache for: dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.google.code.gson/gson/ivy-2.8.5.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.google.code.gson#gson;2.8.5 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.google.code.gson/gson/ivy-2.8.5.xml
downloadGrapes: module revision found in cache: com.google.code.gson#gson;2.8.5
found com.google.code.gson#gson;2.8.5 in localm2
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→com.google.code.gson#gson;2.8.5 [runtime→runtime()]
loadData of com.google.code.gson#gson;2.8.5 of rootConf=default
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→com.google.code.gson#gson;2.8.5 [runtime→compile]
loadData of com.google.code.gson#gson;2.8.5 of rootConf=default
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→com.google.code.gson#gson;2.8.5 [runtime→compile()]
loadData of com.google.code.gson#gson;2.8.5 of rootConf=default
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→com.netflix.netflix-commons#netflix-infix;0.3.0 [runtime→compile()]
loadData of com.netflix.netflix-commons#netflix-infix;0.3.0 of rootConf=default
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→com.netflix.servo#servo-core;0.10.1 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→com.netflix.servo#servo-core;0.10.1 [runtime→runtime()]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→com.netflix.servo#servo-core;0.10.1 [runtime→compile]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→com.netflix.servo#servo-core;0.10.1 [runtime→compile()]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→com.netflix.archaius#archaius-core;0.7.4 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→com.netflix.archaius#archaius-core;0.7.4 [runtime→runtime()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→org.apache.commons#commons-math;2.2 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of org.apache.commons#commons-math;2.2 of rootConf=default
using downloadGrapes to resolve org.apache.commons#commons-math;2.2
downloadGrapes: Checking cache for: dependency: org.apache.commons#commons-math;2.2 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.commons/commons-math/ivy-2.2.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.apache.commons#commons-math;2.2 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.commons/commons-math/ivy-2.2.xml
downloadGrapes: module revision found in cache: org.apache.commons#commons-math;2.2
found org.apache.commons#commons-math;2.2 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.4 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→org.apache.commons#commons-math;2.2 [runtime→runtime()]
loadData of org.apache.commons#commons-math;2.2 of rootConf=default
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→org.apache.commons#commons-math;2.2 [runtime→compile]
loadData of org.apache.commons#commons-math;2.2 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.4 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.4 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→org.apache.commons#commons-math;2.2 [runtime→compile()]
loadData of org.apache.commons#commons-math;2.2 of rootConf=default
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.netflix.netflix-commons#netflix-eventbus;0.3.0 [runtime→compile()]
loadData of com.netflix.netflix-commons#netflix-eventbus;0.3.0 of rootConf=default
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.thoughtworks.xstream#xstream;1.4.10 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
using downloadGrapes to resolve com.thoughtworks.xstream#xstream;1.4.10
downloadGrapes: Checking cache for: dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.thoughtworks.xstream/xstream/ivy-1.4.10.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.thoughtworks.xstream#xstream;1.4.10 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.thoughtworks.xstream/xstream/ivy-1.4.10.xml
downloadGrapes: module revision found in cache: com.thoughtworks.xstream#xstream;1.4.10
found com.thoughtworks.xstream#xstream;1.4.10 in localm2
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.thoughtworks.xstream#xstream;1.4.10 [runtime→runtime()]
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.thoughtworks.xstream#xstream;1.4.10 [runtime→compile]
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
== resolving dependencies com.thoughtworks.xstream#xstream;1.4.10→xmlpull#xmlpull;1.1.3.1 [compile→master()]
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of xmlpull#xmlpull;1.1.3.1 of rootConf=default
using downloadGrapes to resolve xmlpull#xmlpull;1.1.3.1
downloadGrapes: Checking cache for: dependency: xmlpull#xmlpull;1.1.3.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/xmlpull/xmlpull/ivy-1.1.3.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for xmlpull#xmlpull;1.1.3.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/xmlpull/xmlpull/ivy-1.1.3.1.xml
downloadGrapes: module revision found in cache: xmlpull#xmlpull;1.1.3.1
found xmlpull#xmlpull;1.1.3.1 in localm2
== resolving dependencies com.thoughtworks.xstream#xstream;1.4.10→xmlpull#xmlpull;1.1.3.1 [compile→compile()]
loadData of xmlpull#xmlpull;1.1.3.1 of rootConf=default
== resolving dependencies com.thoughtworks.xstream#xstream;1.4.10→xmlpull#xmlpull;1.1.3.1 [compile→runtime()]
loadData of xmlpull#xmlpull;1.1.3.1 of rootConf=default
== resolving dependencies com.thoughtworks.xstream#xstream;1.4.10→xmlpull#xmlpull;1.1.3.1 [compile→compile]
loadData of xmlpull#xmlpull;1.1.3.1 of rootConf=default
== resolving dependencies com.thoughtworks.xstream#xstream;1.4.10→xpp3#xpp3_min;1.1.4c [compile→master()]
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of xpp3#xpp3_min;1.1.4c of rootConf=default
using downloadGrapes to resolve xpp3#xpp3_min;1.1.4c
downloadGrapes: Checking cache for: dependency: xpp3#xpp3_min;1.1.4c {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/xpp3/xpp3_min/ivy-1.1.4c.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for xpp3#xpp3_min;1.1.4c (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/xpp3/xpp3_min/ivy-1.1.4c.xml
downloadGrapes: module revision found in cache: xpp3#xpp3_min;1.1.4c
found xpp3#xpp3_min;1.1.4c in localm2
== resolving dependencies com.thoughtworks.xstream#xstream;1.4.10→xpp3#xpp3_min;1.1.4c [compile→compile()]
loadData of xpp3#xpp3_min;1.1.4c of rootConf=default
== resolving dependencies com.thoughtworks.xstream#xstream;1.4.10→xpp3#xpp3_min;1.1.4c [compile→runtime()]
loadData of xpp3#xpp3_min;1.1.4c of rootConf=default
== resolving dependencies com.thoughtworks.xstream#xstream;1.4.10→xpp3#xpp3_min;1.1.4c [compile→compile]
loadData of xpp3#xpp3_min;1.1.4c of rootConf=default
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
== resolving dependencies com.thoughtworks.xstream#xstream;1.4.10→xmlpull#xmlpull;1.1.3.1 [runtime→runtime()]
loadData of xmlpull#xmlpull;1.1.3.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.thoughtworks.xstream#xstream;1.4.10→xmlpull#xmlpull;1.1.3.1 [runtime→compile]
loadData of xmlpull#xmlpull;1.1.3.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.thoughtworks.xstream#xstream;1.4.10→xpp3#xpp3_min;1.1.4c [runtime→runtime()]
loadData of xpp3#xpp3_min;1.1.4c of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.thoughtworks.xstream#xstream;1.4.10→xpp3#xpp3_min;1.1.4c [runtime→compile]
loadData of xpp3#xpp3_min;1.1.4c of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.thoughtworks.xstream#xstream;1.4.10 [runtime→compile()]
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.netflix.archaius#archaius-core;0.7.4 [runtime→master()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.netflix.archaius#archaius-core;0.7.4 [runtime→runtime()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→javax.ws.rs#jsr311-api;1.1.1 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of javax.ws.rs#jsr311-api;1.1.1 of rootConf=default
using downloadGrapes to resolve javax.ws.rs#jsr311-api;1.1.1
downloadGrapes: Checking cache for: dependency: javax.ws.rs#jsr311-api;1.1.1 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/javax.ws.rs/jsr311-api/ivy-1.1.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for javax.ws.rs#jsr311-api;1.1.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/javax.ws.rs/jsr311-api/ivy-1.1.1.xml
downloadGrapes: module revision found in cache: javax.ws.rs#jsr311-api;1.1.1
found javax.ws.rs#jsr311-api;1.1.1 in localm2
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→javax.ws.rs#jsr311-api;1.1.1 [runtime→runtime()]
loadData of javax.ws.rs#jsr311-api;1.1.1 of rootConf=default
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→javax.ws.rs#jsr311-api;1.1.1 [runtime→compile]
loadData of javax.ws.rs#jsr311-api;1.1.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→javax.ws.rs#jsr311-api;1.1.1 [runtime→compile()]
loadData of javax.ws.rs#jsr311-api;1.1.1 of rootConf=default
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.netflix.servo#servo-core;0.10.1 [runtime→master()]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.netflix.servo#servo-core;0.10.1 [runtime→runtime()]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.netflix.servo#servo-core;0.10.1 [runtime→compile]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.netflix.servo#servo-core;0.10.1 [runtime→compile()]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.sun.jersey#jersey-core;1.19.1 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.sun.jersey#jersey-core;1.19.1 of rootConf=default
using downloadGrapes to resolve com.sun.jersey#jersey-core;1.19.1
downloadGrapes: Checking cache for: dependency: com.sun.jersey#jersey-core;1.19.1 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.sun.jersey/jersey-core/ivy-1.19.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.sun.jersey#jersey-core;1.19.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.sun.jersey/jersey-core/ivy-1.19.1.xml
downloadGrapes: module revision found in cache: com.sun.jersey#jersey-core;1.19.1
found com.sun.jersey#jersey-core;1.19.1 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.sun.jersey#jersey-core;1.19.1 [runtime→runtime()]
loadData of com.sun.jersey#jersey-core;1.19.1 of rootConf=default
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.sun.jersey#jersey-core;1.19.1 [runtime→compile]
loadData of com.sun.jersey#jersey-core;1.19.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.sun.jersey#jersey-core;1.19.1→javax.ws.rs#jsr311-api;1.1.1 [compile→master()]
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of javax.ws.rs#jsr311-api;1.1.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.sun.jersey#jersey-core;1.19.1→javax.ws.rs#jsr311-api;1.1.1 [compile→compile()]
loadData of javax.ws.rs#jsr311-api;1.1.1 of rootConf=default
default is loaded and no conf to load. Skip loading
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.sun.jersey#jersey-core;1.19.1→javax.ws.rs#jsr311-api;1.1.1 [runtime→runtime()]
loadData of javax.ws.rs#jsr311-api;1.1.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.sun.jersey#jersey-core;1.19.1→javax.ws.rs#jsr311-api;1.1.1 [runtime→compile]
loadData of javax.ws.rs#jsr311-api;1.1.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.sun.jersey#jersey-core;1.19.1 [runtime→compile()]
loadData of com.sun.jersey#jersey-core;1.19.1 of rootConf=default
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.sun.jersey#jersey-client;1.19.1 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.sun.jersey#jersey-client;1.19.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.sun.jersey#jersey-client;1.19.1 [runtime→runtime()]
loadData of com.sun.jersey#jersey-client;1.19.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.sun.jersey#jersey-client;1.19.1 [runtime→compile]
loadData of com.sun.jersey#jersey-client;1.19.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.sun.jersey#jersey-client;1.19.1 [runtime→compile()]
loadData of com.sun.jersey#jersey-client;1.19.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.sun.jersey.contribs#jersey-apache-client4;1.19.1 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.sun.jersey.contribs#jersey-apache-client4;1.19.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.sun.jersey.contribs#jersey-apache-client4;1.19.1 [runtime→runtime()]
loadData of com.sun.jersey.contribs#jersey-apache-client4;1.19.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.sun.jersey.contribs#jersey-apache-client4;1.19.1 [runtime→compile]
loadData of com.sun.jersey.contribs#jersey-apache-client4;1.19.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.sun.jersey.contribs#jersey-apache-client4;1.19.1 [runtime→compile()]
loadData of com.sun.jersey.contribs#jersey-apache-client4;1.19.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→org.apache.httpcomponents#httpclient;4.5.5 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→org.apache.httpcomponents#httpclient;4.5.5 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→org.apache.httpcomponents#httpclient;4.5.5 [runtime→compile]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→org.apache.httpcomponents#httpclient;4.5.5 [runtime→compile()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.google.inject#guice;4.1.0 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.google.inject#guice;4.1.0 of rootConf=default
using downloadGrapes to resolve com.google.inject#guice;4.1.0
downloadGrapes: Checking cache for: dependency: com.google.inject#guice;4.1.0 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.google.inject/guice/ivy-4.1.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.google.inject#guice;4.1.0 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.google.inject/guice/ivy-4.1.0.xml
downloadGrapes: module revision found in cache: com.google.inject#guice;4.1.0
found com.google.inject#guice;4.1.0 in localm2
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.google.inject#guice;4.1.0 [runtime→runtime()]
loadData of com.google.inject#guice;4.1.0 of rootConf=default
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.google.inject#guice;4.1.0 [runtime→compile]
loadData of com.google.inject#guice;4.1.0 of rootConf=default
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.google.inject#guice;4.1.0→javax.inject#javax.inject;1 [compile→master()]
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.google.inject#guice;4.1.0→javax.inject#javax.inject;1 [compile→compile()]
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.google.inject#guice;4.1.0→aopalliance#aopalliance;1.0 [compile→master()]
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of aopalliance#aopalliance;1.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.google.inject#guice;4.1.0→aopalliance#aopalliance;1.0 [compile→compile()]
loadData of aopalliance#aopalliance;1.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.google.inject#guice;4.1.0→com.google.guava#guava;18.0 [compile→master()]
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.google.inject#guice;4.1.0→com.google.guava#guava;18.0 [compile→compile()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.google.inject#guice;4.1.0→javax.inject#javax.inject;1 [runtime→runtime()]
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.google.inject#guice;4.1.0→javax.inject#javax.inject;1 [runtime→compile]
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.google.inject#guice;4.1.0→aopalliance#aopalliance;1.0 [runtime→runtime()]
loadData of aopalliance#aopalliance;1.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.google.inject#guice;4.1.0→aopalliance#aopalliance;1.0 [runtime→compile]
loadData of aopalliance#aopalliance;1.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.google.inject#guice;4.1.0→com.google.guava#guava;18.0 [runtime→runtime()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.google.inject#guice;4.1.0→com.google.guava#guava;18.0 [runtime→compile]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.google.inject#guice;4.1.0 [runtime→compile()]
loadData of com.google.inject#guice;4.1.0 of rootConf=default
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→compile()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→compile()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.eureka#eureka-core;1.7.2 [compile→master()]
loadData of com.netflix.eureka#eureka-core;1.7.2 of rootConf=default
using downloadGrapes to resolve com.netflix.eureka#eureka-core;1.7.2
downloadGrapes: Checking cache for: dependency: com.netflix.eureka#eureka-core;1.7.2 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.eureka/eureka-core/ivy-1.7.2.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.eureka#eureka-core;1.7.2 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.eureka/eureka-core/ivy-1.7.2.xml
downloadGrapes: module revision found in cache: com.netflix.eureka#eureka-core;1.7.2
found com.netflix.eureka#eureka-core;1.7.2 in localm2
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.eureka#eureka-core;1.7.2 [compile→compile()]
loadData of com.netflix.eureka#eureka-core;1.7.2 of rootConf=default
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.eureka#eureka-core;1.7.2 [compile→runtime()]
loadData of com.netflix.eureka#eureka-core;1.7.2 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.eureka#eureka-core;1.7.2 [compile→compile]
loadData of com.netflix.eureka#eureka-core;1.7.2 of rootConf=default
excluding dependency: com.amazonaws#aws-java-sdk-core;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-ec2;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-autoscaling;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-sts;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-route53;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]} in runtime
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→com.netflix.eureka#eureka-client;1.7.2 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.amazonaws#aws-java-sdk-core;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-ec2;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-autoscaling;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-sts;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-route53;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→com.netflix.eureka#eureka-client;1.7.2 [runtime→runtime()]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→com.netflix.eureka#eureka-client;1.7.2 [runtime→compile]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→com.netflix.eureka#eureka-client;1.7.2 [runtime→compile()]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→com.thoughtworks.xstream#xstream;1.4.10 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.amazonaws#aws-java-sdk-core;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-ec2;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-autoscaling;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-sts;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-route53;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→com.thoughtworks.xstream#xstream;1.4.10 [runtime→runtime()]
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→com.thoughtworks.xstream#xstream;1.4.10 [runtime→compile]
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→com.thoughtworks.xstream#xstream;1.4.10 [runtime→compile()]
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→javax.ws.rs#jsr311-api;1.1.1 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.amazonaws#aws-java-sdk-core;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-ec2;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-autoscaling;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-sts;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-route53;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
loadData of javax.ws.rs#jsr311-api;1.1.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→javax.ws.rs#jsr311-api;1.1.1 [runtime→runtime()]
loadData of javax.ws.rs#jsr311-api;1.1.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→javax.ws.rs#jsr311-api;1.1.1 [runtime→compile]
loadData of javax.ws.rs#jsr311-api;1.1.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→javax.ws.rs#jsr311-api;1.1.1 [runtime→compile()]
loadData of javax.ws.rs#jsr311-api;1.1.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→org.codehaus.woodstox#woodstox-core-asl;4.4.1 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.amazonaws#aws-java-sdk-core;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-ec2;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-autoscaling;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-sts;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-route53;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
loadData of org.codehaus.woodstox#woodstox-core-asl;4.4.1 of rootConf=default
using downloadGrapes to resolve org.codehaus.woodstox#woodstox-core-asl;4.4.1
downloadGrapes: Checking cache for: dependency: org.codehaus.woodstox#woodstox-core-asl;4.4.1 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.codehaus.woodstox/woodstox-core-asl/ivy-4.4.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.codehaus.woodstox#woodstox-core-asl;4.4.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.codehaus.woodstox/woodstox-core-asl/ivy-4.4.1.xml
downloadGrapes: module revision found in cache: org.codehaus.woodstox#woodstox-core-asl;4.4.1
found org.codehaus.woodstox#woodstox-core-asl;4.4.1 in localm2
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→org.codehaus.woodstox#woodstox-core-asl;4.4.1 [runtime→runtime()]
loadData of org.codehaus.woodstox#woodstox-core-asl;4.4.1 of rootConf=default
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→org.codehaus.woodstox#woodstox-core-asl;4.4.1 [runtime→compile]
loadData of org.codehaus.woodstox#woodstox-core-asl;4.4.1 of rootConf=default
== resolving dependencies org.codehaus.woodstox#woodstox-core-asl;4.4.1→javax.xml.stream#stax-api;1.0-2 [compile→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.amazonaws#aws-java-sdk-core;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-ec2;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-autoscaling;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-sts;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-route53;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
loadData of javax.xml.stream#stax-api;1.0-2 of rootConf=default
using downloadGrapes to resolve javax.xml.stream#stax-api;1.0-2
downloadGrapes: Checking cache for: dependency: javax.xml.stream#stax-api;1.0-2 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/javax.xml.stream/stax-api/ivy-1.0-2.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for javax.xml.stream#stax-api;1.0-2 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/javax.xml.stream/stax-api/ivy-1.0-2.xml
downloadGrapes: module revision found in cache: javax.xml.stream#stax-api;1.0-2
found javax.xml.stream#stax-api;1.0-2 in localm2
== resolving dependencies org.codehaus.woodstox#woodstox-core-asl;4.4.1→javax.xml.stream#stax-api;1.0-2 [compile→compile()]
loadData of javax.xml.stream#stax-api;1.0-2 of rootConf=default
== resolving dependencies org.codehaus.woodstox#woodstox-core-asl;4.4.1→javax.xml.stream#stax-api;1.0-2 [compile→runtime()]
loadData of javax.xml.stream#stax-api;1.0-2 of rootConf=default
== resolving dependencies org.codehaus.woodstox#woodstox-core-asl;4.4.1→javax.xml.stream#stax-api;1.0-2 [compile→compile]
loadData of javax.xml.stream#stax-api;1.0-2 of rootConf=default
== resolving dependencies org.codehaus.woodstox#woodstox-core-asl;4.4.1→org.codehaus.woodstox#stax2-api;3.1.4 [compile→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.amazonaws#aws-java-sdk-core;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-ec2;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-autoscaling;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-sts;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-route53;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
loadData of org.codehaus.woodstox#stax2-api;3.1.4 of rootConf=default
using downloadGrapes to resolve org.codehaus.woodstox#stax2-api;3.1.4
downloadGrapes: Checking cache for: dependency: org.codehaus.woodstox#stax2-api;3.1.4 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.codehaus.woodstox/stax2-api/ivy-3.1.4.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.codehaus.woodstox#stax2-api;3.1.4 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.codehaus.woodstox/stax2-api/ivy-3.1.4.xml
downloadGrapes: module revision found in cache: org.codehaus.woodstox#stax2-api;3.1.4
found org.codehaus.woodstox#stax2-api;3.1.4 in localm2
== resolving dependencies org.codehaus.woodstox#woodstox-core-asl;4.4.1→org.codehaus.woodstox#stax2-api;3.1.4 [compile→compile()]
loadData of org.codehaus.woodstox#stax2-api;3.1.4 of rootConf=default
== resolving dependencies org.codehaus.woodstox#woodstox-core-asl;4.4.1→org.codehaus.woodstox#stax2-api;3.1.4 [compile→runtime()]
loadData of org.codehaus.woodstox#stax2-api;3.1.4 of rootConf=default
== resolving dependencies org.codehaus.woodstox#woodstox-core-asl;4.4.1→org.codehaus.woodstox#stax2-api;3.1.4 [compile→compile]
loadData of org.codehaus.woodstox#stax2-api;3.1.4 of rootConf=default
== resolving dependencies org.codehaus.woodstox#woodstox-core-asl;4.4.1→javax.xml.stream#stax-api;1.0-2 [runtime→runtime()]
loadData of javax.xml.stream#stax-api;1.0-2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.codehaus.woodstox#woodstox-core-asl;4.4.1→javax.xml.stream#stax-api;1.0-2 [runtime→compile]
loadData of javax.xml.stream#stax-api;1.0-2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.codehaus.woodstox#woodstox-core-asl;4.4.1→org.codehaus.woodstox#stax2-api;3.1.4 [runtime→runtime()]
loadData of org.codehaus.woodstox#stax2-api;3.1.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.codehaus.woodstox#woodstox-core-asl;4.4.1→org.codehaus.woodstox#stax2-api;3.1.4 [runtime→compile]
loadData of org.codehaus.woodstox#stax2-api;3.1.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→org.codehaus.woodstox#woodstox-core-asl;4.4.1 [runtime→compile()]
loadData of org.codehaus.woodstox#woodstox-core-asl;4.4.1 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.ribbon#ribbon-eureka;2.2.5 [compile→master()]
loadData of com.netflix.ribbon#ribbon-eureka;2.2.5 of rootConf=default
using downloadGrapes to resolve com.netflix.ribbon#ribbon-eureka;2.2.5
downloadGrapes: Checking cache for: dependency: com.netflix.ribbon#ribbon-eureka;2.2.5 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.ribbon/ribbon-eureka/ivy-2.2.5.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.ribbon#ribbon-eureka;2.2.5 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.ribbon/ribbon-eureka/ivy-2.2.5.xml
downloadGrapes: module revision found in cache: com.netflix.ribbon#ribbon-eureka;2.2.5
found com.netflix.ribbon#ribbon-eureka;2.2.5 in localm2
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.ribbon#ribbon-eureka;2.2.5 [compile→compile()]
loadData of com.netflix.ribbon#ribbon-eureka;2.2.5 of rootConf=default
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.ribbon#ribbon-eureka;2.2.5 [compile→runtime()]
loadData of com.netflix.ribbon#ribbon-eureka;2.2.5 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.ribbon#ribbon-eureka;2.2.5 [compile→compile]
loadData of com.netflix.ribbon#ribbon-eureka;2.2.5 of rootConf=default
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→master()]
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→compile()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→master()]
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→compile()]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.eureka#eureka-client;1.7.2 [runtime→master()]
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.eureka#eureka-client;1.7.2 [runtime→runtime()]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.eureka#eureka-client;1.7.2 [runtime→compile]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.eureka#eureka-client;1.7.2 [runtime→compile()]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→master()]
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→master()]
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→runtime()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.thoughtworks.xstream#xstream;1.4.10 [compile→master()]
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.thoughtworks.xstream#xstream;1.4.10 [compile→compile()]
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.eureka#eureka-client;1.7.2 [runtime→runtime()]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.eureka#eureka-client;1.7.2 [runtime→compile]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.eureka#eureka-core;1.7.2 [runtime→runtime()]
loadData of com.netflix.eureka#eureka-core;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.eureka#eureka-core;1.7.2 [runtime→compile]
loadData of com.netflix.eureka#eureka-core;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.ribbon#ribbon-eureka;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-eureka;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.ribbon#ribbon-eureka;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-eureka;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.thoughtworks.xstream#xstream;1.4.10 [runtime→runtime()]
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.thoughtworks.xstream#xstream;1.4.10 [runtime→compile]
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-netflix-eureka-server/ivy-1.4.5.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-netflix-eureka-server/ivy-1.4.5.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE
found org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE in localm2
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-netflix-eureka-server/ivy-1.4.5.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-netflix-eureka-server/ivy-1.4.5.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE
found org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-freemarker/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-freemarker/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE
found org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.freemarker#freemarker;2.3.28 [compile→master()]
loadData of org.freemarker#freemarker;2.3.28 of rootConf=default
using downloadGrapes to resolve org.freemarker#freemarker;2.3.28
downloadGrapes: Checking cache for: dependency: org.freemarker#freemarker;2.3.28 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.freemarker/freemarker/ivy-2.3.28.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.freemarker#freemarker;2.3.28 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.freemarker/freemarker/ivy-2.3.28.xml
downloadGrapes: module revision found in cache: org.freemarker#freemarker;2.3.28
found org.freemarker#freemarker;2.3.28 in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.freemarker#freemarker;2.3.28 [compile→compile()]
loadData of org.freemarker#freemarker;2.3.28 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.springframework#spring-context-support;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-context-support;4.3.18.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework#spring-context-support;4.3.18.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework#spring-context-support;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-context-support/ivy-4.3.18.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework#spring-context-support;4.3.18.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-context-support/ivy-4.3.18.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework#spring-context-support;4.3.18.RELEASE
found org.springframework#spring-context-support;4.3.18.RELEASE in localm2
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.springframework#spring-context-support;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context-support;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
== resolving dependencies org.springframework#spring-context-support;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context-support;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context-support;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context-support;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context-support;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context-support;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.netflix.eureka#eureka-client;1.7.2 [compile→master()]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.netflix.eureka#eureka-client;1.7.2 [compile→compile()]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.sun.jersey#jersey-servlet;1.19.1 [compile→master()]
loadData of com.sun.jersey#jersey-servlet;1.19.1 of rootConf=default
using downloadGrapes to resolve com.sun.jersey#jersey-servlet;1.19.1
downloadGrapes: Checking cache for: dependency: com.sun.jersey#jersey-servlet;1.19.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.sun.jersey/jersey-servlet/ivy-1.19.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.sun.jersey#jersey-servlet;1.19.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.sun.jersey/jersey-servlet/ivy-1.19.1.xml
downloadGrapes: module revision found in cache: com.sun.jersey#jersey-servlet;1.19.1
found com.sun.jersey#jersey-servlet;1.19.1 in localm2
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.sun.jersey#jersey-servlet;1.19.1 [compile→compile()]
loadData of com.sun.jersey#jersey-servlet;1.19.1 of rootConf=default
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.sun.jersey#jersey-server;1.19.1 [compile→master()]
loadData of com.sun.jersey#jersey-server;1.19.1 of rootConf=default
using downloadGrapes to resolve com.sun.jersey#jersey-server;1.19.1
downloadGrapes: Checking cache for: dependency: com.sun.jersey#jersey-server;1.19.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.sun.jersey/jersey-server/ivy-1.19.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.sun.jersey#jersey-server;1.19.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.sun.jersey/jersey-server/ivy-1.19.1.xml
downloadGrapes: module revision found in cache: com.sun.jersey#jersey-server;1.19.1
found com.sun.jersey#jersey-server;1.19.1 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.sun.jersey#jersey-server;1.19.1 [compile→compile()]
loadData of com.sun.jersey#jersey-server;1.19.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.netflix.eureka#eureka-core;1.7.2 [compile→master()]
loadData of com.netflix.eureka#eureka-core;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.netflix.eureka#eureka-core;1.7.2 [compile→compile()]
loadData of com.netflix.eureka#eureka-core;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.netflix.archaius#archaius-core;0.7.4 [compile→master()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.netflix.archaius#archaius-core;0.7.4 [compile→compile()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→javax.inject#javax.inject;1 [compile→master()]
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→javax.inject#javax.inject;1 [compile→compile()]
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 [compile→master()]
loadData of com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 of rootConf=default
using downloadGrapes to resolve com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11
downloadGrapes: Checking cache for: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.dataformat/jackson-dataformat-xml/ivy-2.8.11.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.dataformat/jackson-dataformat-xml/ivy-2.8.11.xml
downloadGrapes: module revision found in cache: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11
found com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 in localm2
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 [compile→compile()]
loadData of com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.core#jackson-core;2.8.11 [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.core#jackson-core;2.8.11 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11 [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11 of rootConf=default
using downloadGrapes to resolve com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11
downloadGrapes: Checking cache for: dependency: com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.module/jackson-module-jaxb-annotations/ivy-2.8.11.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.module/jackson-module-jaxb-annotations/ivy-2.8.11.xml
downloadGrapes: module revision found in cache: com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11
found com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11 in localm2
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11 [compile→compile()]
loadData of com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11 of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11→com.fasterxml.jackson.core#jackson-core;2.8.11 [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11→com.fasterxml.jackson.core#jackson-core;2.8.11 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→org.codehaus.woodstox#stax2-api;3.1.4 [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.codehaus.woodstox#stax2-api;3.1.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→org.codehaus.woodstox#stax2-api;3.1.4 [compile→compile()]
loadData of org.codehaus.woodstox#stax2-api;3.1.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.woodstox#woodstox-core;5.0.3 [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.woodstox#woodstox-core;5.0.3 of rootConf=default
using downloadGrapes to resolve com.fasterxml.woodstox#woodstox-core;5.0.3
downloadGrapes: Checking cache for: dependency: com.fasterxml.woodstox#woodstox-core;5.0.3 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.woodstox/woodstox-core/ivy-5.0.3.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.fasterxml.woodstox#woodstox-core;5.0.3 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.woodstox/woodstox-core/ivy-5.0.3.xml
downloadGrapes: module revision found in cache: com.fasterxml.woodstox#woodstox-core;5.0.3
found com.fasterxml.woodstox#woodstox-core;5.0.3 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.woodstox#woodstox-core;5.0.3 [compile→compile()]
loadData of com.fasterxml.woodstox#woodstox-core;5.0.3 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.fasterxml.woodstox#woodstox-core;5.0.3→org.codehaus.woodstox#stax2-api;3.1.4 [compile→master()]
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of org.codehaus.woodstox#stax2-api;3.1.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.woodstox#woodstox-core;5.0.3→org.codehaus.woodstox#stax2-api;3.1.4 [compile→compile()]
loadData of org.codehaus.woodstox#stax2-api;3.1.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.thoughtworks.xstream#xstream;1.4.10 [compile→master()]
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.thoughtworks.xstream#xstream;1.4.10 [compile→compile()]
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.freemarker#freemarker;2.3.28 [runtime→runtime()]
loadData of org.freemarker#freemarker;2.3.28 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.freemarker#freemarker;2.3.28 [runtime→compile]
loadData of org.freemarker#freemarker;2.3.28 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.springframework#spring-context-support;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context-support;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.springframework#spring-context-support;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context-support;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
== resolving dependencies org.springframework#spring-context-support;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context-support;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context-support;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context-support;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context-support;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context-support;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.netflix.eureka#eureka-client;1.7.2 [runtime→runtime()]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.netflix.eureka#eureka-client;1.7.2 [runtime→compile]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.sun.jersey#jersey-servlet;1.19.1 [runtime→runtime()]
loadData of com.sun.jersey#jersey-servlet;1.19.1 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.sun.jersey#jersey-servlet;1.19.1 [runtime→compile]
loadData of com.sun.jersey#jersey-servlet;1.19.1 of rootConf=default
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.sun.jersey#jersey-server;1.19.1 [runtime→runtime()]
loadData of com.sun.jersey#jersey-server;1.19.1 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.sun.jersey#jersey-server;1.19.1 [runtime→compile]
loadData of com.sun.jersey#jersey-server;1.19.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.netflix.eureka#eureka-core;1.7.2 [runtime→runtime()]
loadData of com.netflix.eureka#eureka-core;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.netflix.eureka#eureka-core;1.7.2 [runtime→compile]
loadData of com.netflix.eureka#eureka-core;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.netflix.archaius#archaius-core;0.7.4 [runtime→runtime()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→javax.inject#javax.inject;1 [runtime→runtime()]
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→javax.inject#javax.inject;1 [runtime→compile]
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 [runtime→runtime()]
loadData of com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 [runtime→compile]
loadData of com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11 [runtime→runtime()]
loadData of com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11 of rootConf=default
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11 [runtime→compile]
loadData of com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11 of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→org.codehaus.woodstox#stax2-api;3.1.4 [runtime→runtime()]
loadData of org.codehaus.woodstox#stax2-api;3.1.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→org.codehaus.woodstox#stax2-api;3.1.4 [runtime→compile]
loadData of org.codehaus.woodstox#stax2-api;3.1.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.woodstox#woodstox-core;5.0.3 [runtime→runtime()]
loadData of com.fasterxml.woodstox#woodstox-core;5.0.3 of rootConf=default
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.woodstox#woodstox-core;5.0.3 [runtime→compile]
loadData of com.fasterxml.woodstox#woodstox-core;5.0.3 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.fasterxml.woodstox#woodstox-core;5.0.3→org.codehaus.woodstox#stax2-api;3.1.4 [runtime→runtime()]
loadData of org.codehaus.woodstox#stax2-api;3.1.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.woodstox#woodstox-core;5.0.3→org.codehaus.woodstox#stax2-api;3.1.4 [runtime→compile]
loadData of org.codehaus.woodstox#stax2-api;3.1.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.thoughtworks.xstream#xstream;1.4.10 [runtime→runtime()]
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.thoughtworks.xstream#xstream;1.4.10 [runtime→compile]
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→com.netflix.ribbon#ribbon-eureka;2.2.5 [compile→master()]
loadData of com.netflix.ribbon#ribbon-eureka;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→com.netflix.ribbon#ribbon-eureka;2.2.5 [compile→compile()]
loadData of com.netflix.ribbon#ribbon-eureka;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→com.netflix.ribbon#ribbon-eureka;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-eureka;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→com.netflix.ribbon#ribbon-eureka;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-eureka;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-config-server/ivy-1.4.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-config-server/ivy-1.4.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE
found org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE in jcenter
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-config-client/ivy-1.4.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-config-client/ivy-1.4.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE
found org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [compile→master()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→master()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.security#spring-security-crypto;4.2.7.RELEASE [compile→master()]
loadData of org.springframework.security#spring-security-crypto;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.security#spring-security-crypto;4.2.7.RELEASE [compile→compile()]
loadData of org.springframework.security#spring-security-crypto;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.security#spring-security-rsa;1.0.3.RELEASE [compile→master()]
loadData of org.springframework.security#spring-security-rsa;1.0.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.security#spring-security-rsa;1.0.3.RELEASE [compile→compile()]
loadData of org.springframework.security#spring-security-rsa;1.0.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r [compile→master()]
loadData of org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r of rootConf=default
using downloadGrapes to resolve org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r
downloadGrapes: Checking cache for: dependency: org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.eclipse.jgit/org.eclipse.jgit/ivy-3.6.1.201501031845-r.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.eclipse.jgit/org.eclipse.jgit/ivy-3.6.1.201501031845-r.xml
downloadGrapes: module revision found in cache: org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r
found org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r in localm2
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r [compile→compile()]
loadData of org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r of rootConf=default
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r→com.jcraft#jsch;0.1.54 [compile→master()]
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.jcraft#jsch;0.1.54 of rootConf=default
using downloadGrapes to resolve com.jcraft#jsch;0.1.54
downloadGrapes: Checking cache for: dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.jcraft/jsch/ivy-0.1.54.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.jcraft#jsch;0.1.54 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.jcraft/jsch/ivy-0.1.54.xml
downloadGrapes: module revision found in cache: com.jcraft#jsch;0.1.54
found com.jcraft#jsch;0.1.54 in localm2
== resolving dependencies org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r→com.jcraft#jsch;0.1.54 [compile→compile()]
loadData of com.jcraft#jsch;0.1.54 of rootConf=default
== resolving dependencies org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r→com.googlecode.javaewah#JavaEWAH;0.7.9 [compile→master()]
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.googlecode.javaewah#JavaEWAH;0.7.9 of rootConf=default
using downloadGrapes to resolve com.googlecode.javaewah#JavaEWAH;0.7.9
downloadGrapes: Checking cache for: dependency: com.googlecode.javaewah#JavaEWAH;0.7.9 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.googlecode.javaewah/JavaEWAH/ivy-0.7.9.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.googlecode.javaewah#JavaEWAH;0.7.9 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.googlecode.javaewah/JavaEWAH/ivy-0.7.9.xml
downloadGrapes: module revision found in cache: com.googlecode.javaewah#JavaEWAH;0.7.9
found com.googlecode.javaewah#JavaEWAH;0.7.9 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r→com.googlecode.javaewah#JavaEWAH;0.7.9 [compile→compile()]
loadData of com.googlecode.javaewah#JavaEWAH;0.7.9 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r→org.apache.httpcomponents#httpclient;4.5.5 [compile→master()]
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r→org.apache.httpcomponents#httpclient;4.5.5 [compile→compile()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r [compile→runtime()]
loadData of org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r [compile→compile]
loadData of org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r of rootConf=default
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r→com.jcraft#jsch;0.1.54 [runtime→runtime()]
loadData of com.jcraft#jsch;0.1.54 of rootConf=default
== resolving dependencies org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r→com.jcraft#jsch;0.1.54 [runtime→compile]
loadData of com.jcraft#jsch;0.1.54 of rootConf=default
== resolving dependencies org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r→com.googlecode.javaewah#JavaEWAH;0.7.9 [runtime→runtime()]
loadData of com.googlecode.javaewah#JavaEWAH;0.7.9 of rootConf=default
== resolving dependencies org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r→com.googlecode.javaewah#JavaEWAH;0.7.9 [runtime→compile]
loadData of com.googlecode.javaewah#JavaEWAH;0.7.9 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r→org.apache.httpcomponents#httpclient;4.5.5 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r→org.apache.httpcomponents#httpclient;4.5.5 [runtime→compile]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.yaml#snakeyaml;1.17 [compile→master()]
loadData of org.yaml#snakeyaml;1.17 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.yaml#snakeyaml;1.17 [compile→compile()]
loadData of org.yaml#snakeyaml;1.17 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.security#spring-security-crypto;4.2.7.RELEASE [runtime→runtime()]
loadData of org.springframework.security#spring-security-crypto;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.security#spring-security-crypto;4.2.7.RELEASE [runtime→compile]
loadData of org.springframework.security#spring-security-crypto;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.security#spring-security-rsa;1.0.3.RELEASE [runtime→runtime()]
loadData of org.springframework.security#spring-security-rsa;1.0.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.security#spring-security-rsa;1.0.3.RELEASE [runtime→compile]
loadData of org.springframework.security#spring-security-rsa;1.0.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r [runtime→runtime()]
loadData of org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r [runtime→compile]
loadData of org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.yaml#snakeyaml;1.17 [runtime→runtime()]
loadData of org.yaml#snakeyaml;1.17 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.yaml#snakeyaml;1.17 [runtime→compile]
loadData of org.yaml#snakeyaml;1.17 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-config/ivy-1.4.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-config/ivy-1.4.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE
found org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE in jcenter
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→master()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-bus-amqp/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-bus-amqp/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE in jcenter
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-stream-rabbit/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-stream-rabbit/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-stream-binder-rabbit/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-stream-binder-rabbit/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-stream-binder-rabbit-core/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-stream-binder-rabbit-core/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-amqp/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-amqp/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE
found org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE→org.springframework.amqp#spring-rabbit;1.7.8.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework.amqp#spring-rabbit;1.7.8.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.amqp#spring-rabbit;1.7.8.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.amqp/spring-rabbit/ivy-1.7.8.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.amqp#spring-rabbit;1.7.8.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.amqp/spring-rabbit/ivy-1.7.8.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE
found org.springframework.amqp#spring-rabbit;1.7.8.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE→org.springframework.amqp#spring-rabbit;1.7.8.RELEASE [compile→compile()]
loadData of org.springframework.amqp#spring-rabbit;1.7.8.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-tx;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework#spring-tx;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-tx;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-tx;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework.amqp#spring-amqp;1.7.8.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework.amqp#spring-amqp;1.7.8.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.amqp#spring-amqp;1.7.8.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.amqp/spring-amqp/ivy-1.7.8.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.amqp#spring-amqp;1.7.8.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.amqp/spring-amqp/ivy-1.7.8.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.amqp#spring-amqp;1.7.8.RELEASE
found org.springframework.amqp#spring-amqp;1.7.8.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework.amqp#spring-amqp;1.7.8.RELEASE [compile→compile()]
loadData of org.springframework.amqp#spring-amqp;1.7.8.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
== resolving dependencies org.springframework.amqp#spring-amqp;1.7.8.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-amqp;1.7.8.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework.retry#spring-retry;1.2.2.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework.retry#spring-retry;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework.retry#spring-retry;1.2.2.RELEASE [compile→compile()]
loadData of org.springframework.retry#spring-retry;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→com.rabbitmq#http-client;1.1.1.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.rabbitmq#http-client;1.1.1.RELEASE of rootConf=default
using downloadGrapes to resolve com.rabbitmq#http-client;1.1.1.RELEASE
downloadGrapes: Checking cache for: dependency: com.rabbitmq#http-client;1.1.1.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.rabbitmq/http-client/ivy-1.1.1.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.rabbitmq#http-client;1.1.1.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.rabbitmq/http-client/ivy-1.1.1.RELEASE.xml
downloadGrapes: module revision found in cache: com.rabbitmq#http-client;1.1.1.RELEASE
found com.rabbitmq#http-client;1.1.1.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→com.rabbitmq#http-client;1.1.1.RELEASE [compile→compile()]
loadData of com.rabbitmq#http-client;1.1.1.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.rabbitmq#http-client;1.1.1.RELEASE→org.apache.httpcomponents#httpclient;4.5.5 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.rabbitmq#http-client;1.1.1.RELEASE→org.apache.httpcomponents#httpclient;4.5.5 [compile→compile()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.rabbitmq#http-client;1.1.1.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.rabbitmq#http-client;1.1.1.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→com.rabbitmq#amqp-client;4.0.3 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.rabbitmq#amqp-client;4.0.3 of rootConf=default
using downloadGrapes to resolve com.rabbitmq#amqp-client;4.0.3
downloadGrapes: Checking cache for: dependency: com.rabbitmq#amqp-client;4.0.3 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.rabbitmq/amqp-client/ivy-4.0.3.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.rabbitmq#amqp-client;4.0.3 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.rabbitmq/amqp-client/ivy-4.0.3.xml
downloadGrapes: module revision found in cache: com.rabbitmq#amqp-client;4.0.3
found com.rabbitmq#amqp-client;4.0.3 in localm2
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.21 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: io.dropwizard.metrics#metrics-core;3.1.2 {optional=[compile(), master()]} ⇒ dependency: io.dropwizard.metrics#metrics-core;3.1.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.7 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.7.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→com.rabbitmq#amqp-client;4.0.3 [compile→compile()]
loadData of com.rabbitmq#amqp-client;4.0.3 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.21 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: io.dropwizard.metrics#metrics-core;3.1.2 {optional=[compile(), master()]} ⇒ dependency: io.dropwizard.metrics#metrics-core;3.1.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.7 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.7.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
== resolving dependencies com.rabbitmq#amqp-client;4.0.3→org.slf4j#slf4j-api;1.7.25 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.21 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: io.dropwizard.metrics#metrics-core;3.1.2 {optional=[compile(), master()]} ⇒ dependency: io.dropwizard.metrics#metrics-core;3.1.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.7 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.7.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.21 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: io.dropwizard.metrics#metrics-core;3.1.2 {optional=[compile(), master()]} ⇒ dependency: io.dropwizard.metrics#metrics-core;3.1.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.7 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.7.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.21 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: io.dropwizard.metrics#metrics-core;3.1.2 {optional=[compile(), master()]} ⇒ dependency: io.dropwizard.metrics#metrics-core;3.1.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.7 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.7.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.21 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: io.dropwizard.metrics#metrics-core;3.1.2 {optional=[compile(), master()]} ⇒ dependency: io.dropwizard.metrics#metrics-core;3.1.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.7 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.7.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.rabbitmq#amqp-client;4.0.3→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE→org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.integration/spring-integration-amqp/ivy-4.3.17.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.integration/spring-integration-amqp/ivy-4.3.17.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE
found org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.6.11.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE→org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE [compile→compile()]
loadData of org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.6.11.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.6.11.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.6.11.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.6.11.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.6.11.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [compile→compile()]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE→org.springframework.amqp#spring-rabbit;1.7.8.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.6.11.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.6.11.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.6.11.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.6.11.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework.amqp#spring-rabbit;1.7.8.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE→org.springframework.amqp#spring-rabbit;1.7.8.RELEASE [compile→compile()]
loadData of org.springframework.amqp#spring-rabbit;1.7.8.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-stream-codec/ivy-1.3.3.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-stream-codec/ivy-1.3.3.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE
found org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-logging;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-logging;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE→com.esotericsoftware#kryo-shaded;3.0.3 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-logging;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-logging;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-logging;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-logging;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.esotericsoftware#kryo-shaded;3.0.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE→com.esotericsoftware#kryo-shaded;3.0.3 [compile→compile()]
loadData of com.esotericsoftware#kryo-shaded;3.0.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-logging;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-logging;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-logging;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-logging;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE [compile→master()]
loadData of org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE [compile→compile()]
loadData of org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE→org.springframework.amqp#spring-rabbit;1.7.8.RELEASE [runtime→runtime()]
loadData of org.springframework.amqp#spring-rabbit;1.7.8.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE→org.springframework.amqp#spring-rabbit;1.7.8.RELEASE [runtime→compile]
loadData of org.springframework.amqp#spring-rabbit;1.7.8.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-tx;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-tx;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-tx;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-tx;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework.amqp#spring-amqp;1.7.8.RELEASE [runtime→runtime()]
loadData of org.springframework.amqp#spring-amqp;1.7.8.RELEASE of rootConf=default
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework.amqp#spring-amqp;1.7.8.RELEASE [runtime→compile]
loadData of org.springframework.amqp#spring-amqp;1.7.8.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
== resolving dependencies org.springframework.amqp#spring-amqp;1.7.8.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-amqp;1.7.8.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework.retry#spring-retry;1.2.2.RELEASE [runtime→runtime()]
loadData of org.springframework.retry#spring-retry;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework.retry#spring-retry;1.2.2.RELEASE [runtime→compile]
loadData of org.springframework.retry#spring-retry;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→com.rabbitmq#http-client;1.1.1.RELEASE [runtime→runtime()]
loadData of com.rabbitmq#http-client;1.1.1.RELEASE of rootConf=default
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→com.rabbitmq#http-client;1.1.1.RELEASE [runtime→compile]
loadData of com.rabbitmq#http-client;1.1.1.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in runtime
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.rabbitmq#http-client;1.1.1.RELEASE→org.apache.httpcomponents#httpclient;4.5.5 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.rabbitmq#http-client;1.1.1.RELEASE→org.apache.httpcomponents#httpclient;4.5.5 [runtime→compile]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.rabbitmq#http-client;1.1.1.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.rabbitmq#http-client;1.1.1.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→com.rabbitmq#amqp-client;4.0.3 [runtime→runtime()]
loadData of com.rabbitmq#amqp-client;4.0.3 of rootConf=default
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→com.rabbitmq#amqp-client;4.0.3 [runtime→compile]
loadData of com.rabbitmq#amqp-client;4.0.3 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.21 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: io.dropwizard.metrics#metrics-core;3.1.2 {optional=[compile(), master()]} ⇒ dependency: io.dropwizard.metrics#metrics-core;3.1.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.7 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.7.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
== resolving dependencies com.rabbitmq#amqp-client;4.0.3→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.rabbitmq#amqp-client;4.0.3→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE→org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE [runtime→runtime()]
loadData of org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE→org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE [runtime→compile]
loadData of org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.6.11.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [runtime→runtime()]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [runtime→compile]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE→org.springframework.amqp#spring-rabbit;1.7.8.RELEASE [runtime→runtime()]
loadData of org.springframework.amqp#spring-rabbit;1.7.8.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE→org.springframework.amqp#spring-rabbit;1.7.8.RELEASE [runtime→compile]
loadData of org.springframework.amqp#spring-rabbit;1.7.8.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-logging;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE→com.esotericsoftware#kryo-shaded;3.0.3 [runtime→runtime()]
loadData of com.esotericsoftware#kryo-shaded;3.0.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE→com.esotericsoftware#kryo-shaded;3.0.3 [runtime→compile]
loadData of com.esotericsoftware#kryo-shaded;3.0.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE [runtime→runtime()]
loadData of org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE [runtime→compile]
loadData of org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working77→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working77→org.codehaus.groovy#groovy-xml;2.5.0 [default→default]
loadData of org.codehaus.groovy#groovy-xml;2.5.0 of rootConf=default
using downloadGrapes to resolve org.codehaus.groovy#groovy-xml;2.5.0
downloadGrapes: Checking cache for: dependency: org.codehaus.groovy#groovy-xml;2.5.0 {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.codehaus.groovy/groovy-xml/ivy-2.5.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.codehaus.groovy#groovy-xml;2.5.0 (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.codehaus.groovy/groovy-xml/ivy-2.5.0.xml
downloadGrapes: module revision found in cache: org.codehaus.groovy#groovy-xml;2.5.0
found org.codehaus.groovy#groovy-xml;2.5.0 in jcenter
== resolving dependencies caller#all-caller;working77→org.codehaus.groovy#groovy-xml;2.5.0 [default→runtime]
loadData of org.codehaus.groovy#groovy-xml;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working77→org.codehaus.groovy#groovy-xml;2.5.0 [default→compile]
loadData of org.codehaus.groovy#groovy-xml;2.5.0 of rootConf=default
== resolving dependencies org.codehaus.groovy#groovy-xml;2.5.0→org.codehaus.groovy#groovy;2.5.0 [compile→master()]
loadData of org.codehaus.groovy#groovy;2.5.0 of rootConf=default
using downloadGrapes to resolve org.codehaus.groovy#groovy;2.5.0
downloadGrapes: Checking cache for: dependency: org.codehaus.groovy#groovy;2.5.0 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.codehaus.groovy/groovy/ivy-2.5.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.codehaus.groovy#groovy;2.5.0 (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.codehaus.groovy/groovy/ivy-2.5.0.xml
downloadGrapes: module revision found in cache: org.codehaus.groovy#groovy;2.5.0
found org.codehaus.groovy#groovy;2.5.0 in jcenter
== resolving dependencies org.codehaus.groovy#groovy-xml;2.5.0→org.codehaus.groovy#groovy;2.5.0 [compile→compile()]
loadData of org.codehaus.groovy#groovy;2.5.0 of rootConf=default
== resolving dependencies org.codehaus.groovy#groovy-xml;2.5.0→org.codehaus.groovy#groovy;2.5.0 [compile→runtime()]
loadData of org.codehaus.groovy#groovy;2.5.0 of rootConf=default
== resolving dependencies org.codehaus.groovy#groovy-xml;2.5.0→org.codehaus.groovy#groovy;2.5.0 [compile→compile]
loadData of org.codehaus.groovy#groovy;2.5.0 of rootConf=default
== resolving dependencies org.codehaus.groovy#groovy-xml;2.5.0→org.codehaus.groovy#groovy;2.5.0 [runtime→runtime()]
loadData of org.codehaus.groovy#groovy;2.5.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.codehaus.groovy#groovy-xml;2.5.0→org.codehaus.groovy#groovy;2.5.0 [runtime→compile]
loadData of org.codehaus.groovy#groovy;2.5.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working77→org.codehaus.groovy#groovy-xml;2.5.0 [default→master]
loadData of org.codehaus.groovy#groovy-xml;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working77→org.codehaus.groovy#groovy-xml;2.5.0 [default→master()]
loadData of org.codehaus.groovy#groovy-xml;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working77→org.codehaus.groovy#groovy-xml;2.5.0 [default→runtime()]
loadData of org.codehaus.groovy#groovy-xml;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working77→org.codehaus.groovy#groovy-xml;2.5.0 [default→compile]
loadData of org.codehaus.groovy#groovy-xml;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working77→org.codehaus.groovy#groovy-xml;2.5.0 [default→compile()]
loadData of org.codehaus.groovy#groovy-xml;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working77→org.codehaus.groovy#groovy-nio;2.5.0 [default→default]
loadData of org.codehaus.groovy#groovy-nio;2.5.0 of rootConf=default
using downloadGrapes to resolve org.codehaus.groovy#groovy-nio;2.5.0
downloadGrapes: Checking cache for: dependency: org.codehaus.groovy#groovy-nio;2.5.0 {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.codehaus.groovy/groovy-nio/ivy-2.5.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.codehaus.groovy#groovy-nio;2.5.0 (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.codehaus.groovy/groovy-nio/ivy-2.5.0.xml
downloadGrapes: module revision found in cache: org.codehaus.groovy#groovy-nio;2.5.0
found org.codehaus.groovy#groovy-nio;2.5.0 in jcenter
== resolving dependencies caller#all-caller;working77→org.codehaus.groovy#groovy-nio;2.5.0 [default→runtime]
loadData of org.codehaus.groovy#groovy-nio;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working77→org.codehaus.groovy#groovy-nio;2.5.0 [default→compile]
loadData of org.codehaus.groovy#groovy-nio;2.5.0 of rootConf=default
== resolving dependencies org.codehaus.groovy#groovy-nio;2.5.0→org.codehaus.groovy#groovy;2.5.0 [compile→master()]
loadData of org.codehaus.groovy#groovy;2.5.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.codehaus.groovy#groovy-nio;2.5.0→org.codehaus.groovy#groovy;2.5.0 [compile→compile()]
loadData of org.codehaus.groovy#groovy;2.5.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.codehaus.groovy#groovy-nio;2.5.0→org.codehaus.groovy#groovy;2.5.0 [runtime→runtime()]
loadData of org.codehaus.groovy#groovy;2.5.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.codehaus.groovy#groovy-nio;2.5.0→org.codehaus.groovy#groovy;2.5.0 [runtime→compile]
loadData of org.codehaus.groovy#groovy;2.5.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working77→org.codehaus.groovy#groovy-nio;2.5.0 [default→master]
loadData of org.codehaus.groovy#groovy-nio;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working77→org.codehaus.groovy#groovy-nio;2.5.0 [default→master()]
loadData of org.codehaus.groovy#groovy-nio;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working77→org.codehaus.groovy#groovy-nio;2.5.0 [default→runtime()]
loadData of org.codehaus.groovy#groovy-nio;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working77→org.codehaus.groovy#groovy-nio;2.5.0 [default→compile]
loadData of org.codehaus.groovy#groovy-nio;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working77→org.codehaus.groovy#groovy-nio;2.5.0 [default→compile()]
loadData of org.codehaus.groovy#groovy-nio;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working77→org.codehaus.groovy#groovy-json;2.5.0 [default→default]
loadData of org.codehaus.groovy#groovy-json;2.5.0 of rootConf=default
using downloadGrapes to resolve org.codehaus.groovy#groovy-json;2.5.0
downloadGrapes: Checking cache for: dependency: org.codehaus.groovy#groovy-json;2.5.0 {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.codehaus.groovy/groovy-json/ivy-2.5.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.codehaus.groovy#groovy-json;2.5.0 (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.codehaus.groovy/groovy-json/ivy-2.5.0.xml
downloadGrapes: module revision found in cache: org.codehaus.groovy#groovy-json;2.5.0
found org.codehaus.groovy#groovy-json;2.5.0 in jcenter
== resolving dependencies caller#all-caller;working77→org.codehaus.groovy#groovy-json;2.5.0 [default→runtime]
loadData of org.codehaus.groovy#groovy-json;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working77→org.codehaus.groovy#groovy-json;2.5.0 [default→compile]
loadData of org.codehaus.groovy#groovy-json;2.5.0 of rootConf=default
== resolving dependencies org.codehaus.groovy#groovy-json;2.5.0→org.codehaus.groovy#groovy;2.5.0 [compile→master()]
loadData of org.codehaus.groovy#groovy;2.5.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.codehaus.groovy#groovy-json;2.5.0→org.codehaus.groovy#groovy;2.5.0 [compile→compile()]
loadData of org.codehaus.groovy#groovy;2.5.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.codehaus.groovy#groovy-json;2.5.0→org.codehaus.groovy#groovy;2.5.0 [runtime→runtime()]
loadData of org.codehaus.groovy#groovy;2.5.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.codehaus.groovy#groovy-json;2.5.0→org.codehaus.groovy#groovy;2.5.0 [runtime→compile]
loadData of org.codehaus.groovy#groovy;2.5.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working77→org.codehaus.groovy#groovy-json;2.5.0 [default→master]
loadData of org.codehaus.groovy#groovy-json;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working77→org.codehaus.groovy#groovy-json;2.5.0 [default→master()]
loadData of org.codehaus.groovy#groovy-json;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working77→org.codehaus.groovy#groovy-json;2.5.0 [default→runtime()]
loadData of org.codehaus.groovy#groovy-json;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working77→org.codehaus.groovy#groovy-json;2.5.0 [default→compile]
loadData of org.codehaus.groovy#groovy-json;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working77→org.codehaus.groovy#groovy-json;2.5.0 [default→compile()]
loadData of org.codehaus.groovy#groovy-json;2.5.0 of rootConf=default
Nbr of module to sort : 251
Sort dependencies of : org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE / Number of dependencies = 5
Sort dependencies of : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE / Number of dependencies = 11
Sort dependencies of : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE / Number of dependencies = 10
Sort dependencies of : org.springframework.boot#spring-boot;1.5.14.RELEASE / Number of dependencies = 69
Sort dependencies of : org.springframework#spring-core;4.3.18.RELEASE / Number of dependencies = 5
Sort dependencies of : commons-codec#commons-codec;1.10 / Number of dependencies = 1
Non matching revision detected when sorting. commons-codec#commons-codec depends on junit#junit;4.11, doesn’t match junit#junit;4.12
Sort done for : commons-codec#commons-codec;1.10
Sort dependencies of : commons-logging#commons-logging;1.2 / Number of dependencies = 5
Non matching revision detected when sorting. commons-logging#commons-logging depends on junit#junit;3.8.1, doesn’t match junit#junit;4.12
Sort done for : commons-logging#commons-logging;1.2
Non matching revision detected when sorting. org.springframework#spring-core depends on org.aspectj#aspectjweaver;1.8.9, doesn’t match org.aspectj#aspectjweaver;1.8.13
Sort done for : org.springframework#spring-core;4.3.18.RELEASE
Sort dependencies of : org.springframework#spring-context;4.3.18.RELEASE / Number of dependencies = 17
Sort dependencies of : javax.inject#javax.inject;1 / Number of dependencies = 0
Sort done for : javax.inject#javax.inject;1
Non matching revision detected when sorting. org.springframework#spring-context depends on javax.validation#validation-api;1.0.0.GA, doesn’t match javax.validation#validation-api;1.1.0.Final
Sort dependencies of : joda-time#joda-time;2.9.9 / Number of dependencies = 2
Non matching revision detected when sorting. joda-time#joda-time depends on junit#junit;3.8.2, doesn’t match junit#junit;4.12
Sort done for : joda-time#joda-time;2.9.9
Non matching revision detected when sorting. org.springframework#spring-context depends on org.aspectj#aspectjweaver;1.8.9, doesn’t match org.aspectj#aspectjweaver;1.8.13
Non matching revision detected when sorting. org.springframework#spring-context depends on org.hibernate#hibernate-validator;4.3.2.Final, doesn’t match org.hibernate#hibernate-validator;5.3.6.Final
Sort dependencies of : org.springframework#spring-aop;4.3.18.RELEASE / Number of dependencies = 6
Non matching revision detected when sorting. org.springframework#spring-aop depends on org.aspectj#aspectjweaver;1.8.9, doesn’t match org.aspectj#aspectjweaver;1.8.13
Sort dependencies of : org.springframework#spring-beans;4.3.18.RELEASE / Number of dependencies = 5
Module descriptor is processed : javax.inject#javax.inject;1
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Sort dependencies of : org.yaml#snakeyaml;1.17 / Number of dependencies = 4
Sort dependencies of : junit#junit;4.12 / Number of dependencies = 1
Sort dependencies of : org.hamcrest#hamcrest-core;1.3 / Number of dependencies = 0
Sort done for : org.hamcrest#hamcrest-core;1.3
Sort done for : junit#junit;4.12
Non matching revision detected when sorting. org.yaml#snakeyaml depends on joda-time#joda-time;1.6, doesn’t match joda-time#joda-time;2.9.9
Non matching revision detected when sorting. org.yaml#snakeyaml depends on joda-time#joda-time;1.6, doesn’t match joda-time#joda-time;2.7
Sort done for : org.yaml#snakeyaml;1.17
Sort done for : org.springframework#spring-beans;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Sort done for : org.springframework#spring-aop;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-beans;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Sort dependencies of : org.springframework#spring-expression;4.3.18.RELEASE / Number of dependencies = 1
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Sort done for : org.springframework#spring-expression;4.3.18.RELEASE
Sort done for : org.springframework#spring-context;4.3.18.RELEASE
Sort dependencies of : ch.qos.logback#logback-classic;1.1.11 / Number of dependencies = 25
Sort dependencies of : ch.qos.logback#logback-core;1.1.11 / Number of dependencies = 9
Sort dependencies of : org.mockito#mockito-core;1.10.19 / Number of dependencies = 2
Non matching revision detected when sorting. org.mockito#mockito-core depends on org.hamcrest#hamcrest-core;1.1, doesn’t match org.hamcrest#hamcrest-core;1.3
Sort dependencies of : org.objenesis#objenesis;2.1 / Number of dependencies = 1
Non matching revision detected when sorting. org.objenesis#objenesis depends on junit#junit;4.11, doesn’t match junit#junit;4.12
Sort done for : org.objenesis#objenesis;2.1
Sort done for : org.mockito#mockito-core;1.10.19
Non matching revision detected when sorting. ch.qos.logback#logback-core depends on joda-time#joda-time;2.9.2, doesn’t match joda-time#joda-time;2.9.9
Non matching revision detected when sorting. ch.qos.logback#logback-core depends on joda-time#joda-time;2.9.2, doesn’t match joda-time#joda-time;2.7
Non matching revision detected when sorting. ch.qos.logback#logback-core depends on junit#junit;4.10, doesn’t match junit#junit;4.12
Non matching revision detected when sorting. ch.qos.logback#logback-core depends on org.assertj#assertj-core;1.7.1, doesn’t match org.assertj#assertj-core;2.6.0
Sort done for : ch.qos.logback#logback-core;1.1.11
Non matching revision detected when sorting. ch.qos.logback#logback-classic depends on org.slf4j#slf4j-api;1.7.22, doesn’t match org.slf4j#slf4j-api;1.7.25
Non matching revision detected when sorting. ch.qos.logback#logback-classic depends on org.slf4j#slf4j-api;1.7.22, doesn’t match org.slf4j#slf4j-api;1.7.25
Non matching revision detected when sorting. ch.qos.logback#logback-classic depends on org.slf4j#log4j-over-slf4j;1.7.22, doesn’t match org.slf4j#log4j-over-slf4j;1.7.25
Non matching revision detected when sorting. ch.qos.logback#logback-classic depends on org.slf4j#jul-to-slf4j;1.7.22, doesn’t match org.slf4j#jul-to-slf4j;1.7.25
Module descriptor is processed : ch.qos.logback#logback-core;1.1.11
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Non matching revision detected when sorting. ch.qos.logback#logback-classic depends on junit#junit;4.10, doesn’t match junit#junit;4.12
Non matching revision detected when sorting. ch.qos.logback#logback-classic depends on org.assertj#assertj-core;1.7.1, doesn’t match org.assertj#assertj-core;2.6.0
Sort done for : ch.qos.logback#logback-classic;1.1.11
Sort dependencies of : com.fasterxml.jackson.core#jackson-databind;2.8.11.2 / Number of dependencies = 7
Sort dependencies of : com.fasterxml.jackson.core#jackson-annotations;2.8.0 / Number of dependencies = 1
Module descriptor is processed : junit#junit;4.12
Sort done for : com.fasterxml.jackson.core#jackson-annotations;2.8.0
Non matching revision detected when sorting. com.fasterxml.jackson.core#jackson-databind depends on com.fasterxml.jackson.core#jackson-core;2.8.10, doesn’t match com.fasterxml.jackson.core#jackson-core;2.8.11
Module descriptor is processed : junit#junit;4.12
Sort done for : com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Sort dependencies of : com.google.code.gson#gson;2.8.5 / Number of dependencies = 1
Module descriptor is processed : junit#junit;4.12
Sort done for : com.google.code.gson#gson;2.8.5
Module descriptor is processed : junit#junit;4.12
Sort dependencies of : org.apache.httpcomponents#httpclient;4.5.5 / Number of dependencies = 5
Sort dependencies of : org.apache.httpcomponents#httpcore;4.4.9 / Number of dependencies = 4
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : commons-logging#commons-logging;1.2
Non matching revision detected when sorting. org.apache.httpcomponents#httpcore depends on org.apache.commons#commons-lang3;3.4, doesn’t match org.apache.commons#commons-lang3;3.5
Sort done for : org.apache.httpcomponents#httpcore;4.4.9
Module descriptor is processed : commons-logging#commons-logging;1.2
Module descriptor is processed : commons-codec#commons-codec;1.10
Non matching revision detected when sorting. org.apache.httpcomponents#httpclient depends on junit#junit;4.11, doesn’t match junit#junit;4.12
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Sort done for : org.apache.httpcomponents#httpclient;4.5.5
Sort dependencies of : org.apache.tomcat.embed#tomcat-embed-core;8.5.31 / Number of dependencies = 1
Sort dependencies of : org.apache.tomcat#tomcat-annotations-api;8.5.31 / Number of dependencies = 0
Sort done for : org.apache.tomcat#tomcat-annotations-api;8.5.31
Sort done for : org.apache.tomcat.embed#tomcat-embed-core;8.5.31
Sort dependencies of : org.assertj#assertj-core;2.6.0 / Number of dependencies = 4
Module descriptor is processed : junit#junit;4.12
Non matching revision detected when sorting. org.assertj#assertj-core depends on org.mockito#mockito-core;2.2.9, doesn’t match org.mockito#mockito-core;1.10.19
Sort done for : org.assertj#assertj-core;2.6.0
Non matching revision detected when sorting. org.springframework.boot#spring-boot depends on org.codehaus.groovy#groovy;2.4.15, doesn’t match org.codehaus.groovy#groovy;2.5.0
Sort dependencies of : org.codehaus.groovy#groovy;2.4.15 / Number of dependencies = 5
Sort dependencies of : com.thoughtworks.xstream#xstream;1.4.10 / Number of dependencies = 21
Non matching revision detected when sorting. com.thoughtworks.xstream#xstream depends on joda-time#joda-time;1.6, doesn’t match joda-time#joda-time;2.9.9
Non matching revision detected when sorting. com.thoughtworks.xstream#xstream depends on joda-time#joda-time;1.6, doesn’t match joda-time#joda-time;2.7
Sort dependencies of : stax#stax-api;1.0.1 / Number of dependencies = 0
Sort done for : stax#stax-api;1.0.1
Sort dependencies of : xmlpull#xmlpull;1.1.3.1 / Number of dependencies = 0
Sort done for : xmlpull#xmlpull;1.1.3.1
Sort dependencies of : xpp3#xpp3_min;1.1.4c / Number of dependencies = 0
Sort done for : xpp3#xpp3_min;1.1.4c
Non matching revision detected when sorting. com.thoughtworks.xstream#xstream depends on org.codehaus.jettison#jettison;1.2, doesn’t match org.codehaus.jettison#jettison;1.3.7
Non matching revision detected when sorting. com.thoughtworks.xstream#xstream depends on junit#junit;3.8.1, doesn’t match junit#junit;4.12
Non matching revision detected when sorting. com.thoughtworks.xstream#xstream depends on commons-lang#commons-lang;2.4, doesn’t match commons-lang#commons-lang;2.6
Sort done for : com.thoughtworks.xstream#xstream;1.4.10
Sort done for : org.codehaus.groovy#groovy;2.4.15
Non matching revision detected when sorting. org.springframework.boot#spring-boot depends on org.codehaus.groovy#groovy-xml;2.4.15, doesn’t match org.codehaus.groovy#groovy-xml;2.5.0
Sort dependencies of : org.hamcrest#hamcrest-library;1.3 / Number of dependencies = 1
Module descriptor is processed : org.hamcrest#hamcrest-core;1.3
Sort done for : org.hamcrest#hamcrest-library;1.3
Sort dependencies of : org.hibernate#hibernate-validator;5.3.6.Final / Number of dependencies = 16
Sort dependencies of : javax.validation#validation-api;1.1.0.Final / Number of dependencies = 1
Sort done for : javax.validation#validation-api;1.1.0.Final
Non matching revision detected when sorting. org.hibernate#hibernate-validator depends on org.jboss.logging#jboss-logging;3.3.0.Final, doesn’t match org.jboss.logging#jboss-logging;3.3.2.Final
Non matching revision detected when sorting. org.hibernate#hibernate-validator depends on com.fasterxml#classmate;1.3.1, doesn’t match com.fasterxml#classmate;1.3.4
Non matching revision detected when sorting. org.hibernate#hibernate-validator depends on joda-time#joda-time;2.9.5, doesn’t match joda-time#joda-time;2.9.9
Non matching revision detected when sorting. org.hibernate#hibernate-validator depends on joda-time#joda-time;2.9.5, doesn’t match joda-time#joda-time;2.7
Sort done for : org.hibernate#hibernate-validator;5.3.6.Final
Sort dependencies of : org.slf4j#jul-to-slf4j;1.7.25 / Number of dependencies = 3
Sort dependencies of : org.slf4j#slf4j-api;1.7.25 / Number of dependencies = 1
Module descriptor is processed : junit#junit;4.12
Sort done for : org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : junit#junit;4.12
Sort done for : org.slf4j#jul-to-slf4j;1.7.25
Module descriptor is processed : org.slf4j#slf4j-api;1.7.25
Sort dependencies of : org.springframework#spring-test;4.3.18.RELEASE / Number of dependencies = 30
Non matching revision detected when sorting. org.springframework#spring-test depends on com.jayway.jsonpath#json-path;2.3.0, doesn’t match com.jayway.jsonpath#json-path;2.2.0
Module descriptor is processed : javax.inject#javax.inject;1
Module descriptor is processed : junit#junit;4.12
Non matching revision detected when sorting. org.springframework#spring-test depends on org.aspectj#aspectjweaver;1.8.9, doesn’t match org.aspectj#aspectjweaver;1.8.13
Module descriptor is processed : org.hamcrest#hamcrest-core;1.3
Sort dependencies of : org.skyscreamer#jsonassert;1.4.0 / Number of dependencies = 2
Sort dependencies of : com.vaadin.external.google#android-json;0.0.20131108.vaadin1 / Number of dependencies = 0
Sort done for : com.vaadin.external.google#android-json;0.0.20131108.vaadin1
Non matching revision detected when sorting. org.skyscreamer#jsonassert depends on junit#junit;4.10, doesn’t match junit#junit;4.12
Sort done for : org.skyscreamer#jsonassert;1.4.0
Module descriptor is processed : org.springframework#spring-aop;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-beans;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Sort dependencies of : org.springframework#spring-tx;4.3.18.RELEASE / Number of dependencies = 8
Module descriptor is processed : org.springframework#spring-aop;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-beans;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Sort done for : org.springframework#spring-tx;4.3.18.RELEASE
Sort dependencies of : org.springframework#spring-web;4.3.18.RELEASE / Number of dependencies = 29
Non matching revision detected when sorting. org.springframework#spring-web depends on com.fasterxml.jackson.core#jackson-databind;2.8.11.1, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Sort dependencies of : com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 / Number of dependencies = 8
Sort dependencies of : com.fasterxml.jackson.core#jackson-core;2.8.11 / Number of dependencies = 1
Module descriptor is processed : junit#junit;4.12
Sort done for : com.fasterxml.jackson.core#jackson-core;2.8.11
Module descriptor is processed : com.fasterxml.jackson.core#jackson-annotations;2.8.0
Non matching revision detected when sorting. com.fasterxml.jackson.dataformat#jackson-dataformat-xml depends on com.fasterxml.jackson.core#jackson-databind;2.8.11, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Sort dependencies of : com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11 / Number of dependencies = 6
Module descriptor is processed : com.fasterxml.jackson.core#jackson-core;2.8.11
Module descriptor is processed : com.fasterxml.jackson.core#jackson-annotations;2.8.0
Non matching revision detected when sorting. com.fasterxml.jackson.module#jackson-module-jaxb-annotations depends on com.fasterxml.jackson.core#jackson-databind;2.8.11, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : junit#junit;4.12
Sort dependencies of : javax.ws.rs#jsr311-api;1.1.1 / Number of dependencies = 1
Non matching revision detected when sorting. javax.ws.rs#jsr311-api depends on junit#junit;3.8.1, doesn’t match junit#junit;4.12
Sort done for : javax.ws.rs#jsr311-api;1.1.1
Sort done for : com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11
Sort dependencies of : javax.xml.stream#stax-api;1.0-2 / Number of dependencies = 0
Sort done for : javax.xml.stream#stax-api;1.0-2
Sort dependencies of : org.codehaus.woodstox#stax2-api;3.1.4 / Number of dependencies = 1
Module descriptor is processed : javax.xml.stream#stax-api;1.0-2
Sort done for : org.codehaus.woodstox#stax2-api;3.1.4
Sort dependencies of : com.fasterxml.woodstox#woodstox-core;5.0.3 / Number of dependencies = 7
Module descriptor is processed : javax.xml.stream#stax-api;1.0-2
Module descriptor is processed : org.codehaus.woodstox#stax2-api;3.1.4
Non matching revision detected when sorting. com.fasterxml.woodstox#woodstox-core depends on junit#junit;4.11, doesn’t match junit#junit;4.12
Sort done for : com.fasterxml.woodstox#woodstox-core;5.0.3
Module descriptor is processed : junit#junit;4.12
Sort done for : com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11
Non matching revision detected when sorting. org.springframework#spring-web depends on com.google.code.gson#gson;2.8.2, doesn’t match com.google.code.gson#gson;2.8.5
Non matching revision detected when sorting. org.springframework#spring-web depends on com.google.code.gson#gson;2.8.2, doesn’t match com.google.code.gson#gson;2.3.1
Sort dependencies of : com.google.protobuf#protobuf-java;2.6.1 / Number of dependencies = 3
Non matching revision detected when sorting. com.google.protobuf#protobuf-java depends on junit#junit;4.4, doesn’t match junit#junit;4.12
Sort done for : com.google.protobuf#protobuf-java;2.6.1
Non matching revision detected when sorting. org.springframework#spring-web depends on javax.validation#validation-api;1.0.0.GA, doesn’t match javax.validation#validation-api;1.1.0.Final
Module descriptor is processed : org.apache.httpcomponents#httpclient;4.5.5
Module descriptor is processed : org.springframework#spring-aop;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-beans;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Sort done for : org.springframework#spring-web;4.3.18.RELEASE
Sort dependencies of : org.springframework#spring-webmvc;4.3.18.RELEASE / Number of dependencies = 31
Non matching revision detected when sorting. org.springframework#spring-webmvc depends on com.fasterxml.jackson.core#jackson-databind;2.8.11.1, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11
Non matching revision detected when sorting. org.springframework#spring-webmvc depends on org.freemarker#freemarker;2.3.23, doesn’t match org.freemarker#freemarker;2.3.28
Module descriptor is processed : org.springframework#spring-aop;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-beans;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Sort dependencies of : org.springframework#spring-context-support;4.3.18.RELEASE / Number of dependencies = 16
Non matching revision detected when sorting. org.springframework#spring-context-support depends on com.google.guava#guava;20.0, doesn’t match com.google.guava#guava;18.0
Non matching revision detected when sorting. org.springframework#spring-context-support depends on org.freemarker#freemarker;2.3.23, doesn’t match org.freemarker#freemarker;2.3.28
Module descriptor is processed : org.springframework#spring-beans;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-tx;4.3.18.RELEASE
Sort done for : org.springframework#spring-context-support;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-expression;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-web;4.3.18.RELEASE
Sort done for : org.springframework#spring-webmvc;4.3.18.RELEASE
Sort done for : org.springframework#spring-test;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-web;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-webmvc;4.3.18.RELEASE
Module descriptor is processed : org.yaml#snakeyaml;1.17
Sort dependencies of : org.slf4j#jcl-over-slf4j;1.7.25 / Number of dependencies = 3
Module descriptor is processed : org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : junit#junit;4.12
Sort done for : org.slf4j#jcl-over-slf4j;1.7.25
Module descriptor is processed : org.springframework#spring-context-support;4.3.18.RELEASE
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot;1.5.14.RELEASE
Sort dependencies of : org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE / Number of dependencies = 129
Module descriptor is processed : org.springframework.boot#spring-boot;1.5.14.RELEASE
Module descriptor is processed : com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11
Module descriptor is processed : com.google.code.gson#gson;2.8.5
Module descriptor is processed : org.apache.tomcat.embed#tomcat-embed-core;8.5.31
Sort dependencies of : org.apache.tomcat.embed#tomcat-embed-el;8.5.31 / Number of dependencies = 0
Sort done for : org.apache.tomcat.embed#tomcat-embed-el;8.5.31
Sort dependencies of : org.freemarker#freemarker;2.3.28 / Number of dependencies = 0
Sort done for : org.freemarker#freemarker;2.3.28
Module descriptor is processed : org.hibernate#hibernate-validator;5.3.6.Final
Sort dependencies of : org.springframework.integration#spring-integration-core;4.3.17.RELEASE / Number of dependencies = 11
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-aop;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Sort dependencies of : org.springframework#spring-messaging;4.3.18.RELEASE / Number of dependencies = 10
Non matching revision detected when sorting. org.springframework#spring-messaging depends on com.fasterxml.jackson.core#jackson-databind;2.8.11.1, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : org.springframework#spring-beans;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Sort done for : org.springframework#spring-messaging;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-tx;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.integration#spring-integration-core depends on org.springframework.retry#spring-retry;1.1.3.RELEASE, doesn’t match org.springframework.retry#spring-retry;1.2.2.RELEASE
Non matching revision detected when sorting. org.springframework.integration#spring-integration-core depends on com.fasterxml.jackson.core#jackson-databind;2.8.10, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Sort dependencies of : com.jayway.jsonpath#json-path;2.2.0 / Number of dependencies = 6
Sort dependencies of : net.minidev#json-smart;2.2.1 / Number of dependencies = 2
Module descriptor is processed : junit#junit;4.12
Sort dependencies of : net.minidev#accessors-smart;1.1 / Number of dependencies = 2
Non matching revision detected when sorting. net.minidev#accessors-smart depends on junit#junit;3.8.2, doesn’t match junit#junit;4.12
Sort dependencies of : org.ow2.asm#asm;5.0.3 / Number of dependencies = 0
Sort done for : org.ow2.asm#asm;5.0.3
Sort done for : net.minidev#accessors-smart;1.1
Sort done for : net.minidev#json-smart;2.2.1
Non matching revision detected when sorting. com.jayway.jsonpath#json-path depends on com.google.code.gson#gson;2.3.1, doesn’t match com.google.code.gson#gson;2.8.5
Sort dependencies of : com.google.code.gson#gson;2.3.1 / Number of dependencies = 1
Non matching revision detected when sorting. com.google.code.gson#gson depends on junit#junit;3.8.2, doesn’t match junit#junit;4.12
Sort done for : com.google.code.gson#gson;2.3.1
Non matching revision detected when sorting. com.jayway.jsonpath#json-path depends on com.fasterxml.jackson.core#jackson-databind;2.6.3, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Non matching revision detected when sorting. com.jayway.jsonpath#json-path depends on org.slf4j#slf4j-api;1.7.16, doesn’t match org.slf4j#slf4j-api;1.7.25
Sort done for : com.jayway.jsonpath#json-path;2.2.0
Sort dependencies of : com.esotericsoftware#kryo-shaded;3.0.3 / Number of dependencies = 6
Sort dependencies of : com.esotericsoftware#minlog;1.3.0 / Number of dependencies = 1
Non matching revision detected when sorting. com.esotericsoftware#minlog depends on junit#junit;4.11, doesn’t match junit#junit;4.12
Sort done for : com.esotericsoftware#minlog;1.3.0
Module descriptor is processed : org.objenesis#objenesis;2.1
Non matching revision detected when sorting. com.esotericsoftware#kryo-shaded depends on junit#junit;4.8.2, doesn’t match junit#junit;4.12
Module descriptor is processed : com.esotericsoftware#minlog;1.3.0
Module descriptor is processed : org.objenesis#objenesis;2.1
Non matching revision detected when sorting. com.esotericsoftware#kryo-shaded depends on junit#junit;4.8.2, doesn’t match junit#junit;4.12
Sort done for : com.esotericsoftware#kryo-shaded;3.0.3
Sort done for : org.springframework.integration#spring-integration-core;4.3.17.RELEASE
Sort dependencies of : org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE / Number of dependencies = 1
Module descriptor is processed : org.springframework.integration#spring-integration-core;4.3.17.RELEASE
Sort done for : org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE
Module descriptor is processed : org.springframework#spring-tx;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-web;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-webmvc;4.3.18.RELEASE
Sort dependencies of : org.springframework.security#spring-security-web;4.2.7.RELEASE / Number of dependencies = 31
Sort dependencies of : aopalliance#aopalliance;1.0 / Number of dependencies = 0
Sort done for : aopalliance#aopalliance;1.0
Sort dependencies of : org.springframework.security#spring-security-core;4.2.7.RELEASE / Number of dependencies = 28
Module descriptor is processed : aopalliance#aopalliance;1.0
Module descriptor is processed : org.springframework#spring-aop;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-beans;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-expression;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.security#spring-security-core depends on com.fasterxml.jackson.core#jackson-databind;2.8.11.1, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : commons-logging#commons-logging;1.2
Non matching revision detected when sorting. org.springframework.security#spring-security-core depends on org.aspectj#aspectjrt;1.8.12, doesn’t match org.aspectj#aspectjrt;1.8.13
Module descriptor is processed : org.springframework#spring-tx;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.security#spring-security-core depends on ch.qos.logback#logback-classic;1.1.2, doesn’t match ch.qos.logback#logback-classic;1.1.11
Sort dependencies of : commons-collections#commons-collections;3.2.2 / Number of dependencies = 1
Non matching revision detected when sorting. commons-collections#commons-collections depends on junit#junit;3.8.1, doesn’t match junit#junit;4.12
Sort done for : commons-collections#commons-collections;3.2.2
Module descriptor is processed : junit#junit;4.12
Non matching revision detected when sorting. org.springframework.security#spring-security-core depends on org.assertj#assertj-core;2.2.0, doesn’t match org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.skyscreamer#jsonassert;1.4.0
Module descriptor is processed : org.slf4j#jcl-over-slf4j;1.7.25
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.security#spring-security-core;4.2.7.RELEASE
Module descriptor is processed : org.springframework#spring-beans;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-expression;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-web;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.security#spring-security-web depends on com.fasterxml.jackson.core#jackson-databind;2.8.11.1, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : commons-logging#commons-logging;1.2
Module descriptor is processed : org.springframework#spring-tx;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-webmvc;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.security#spring-security-web depends on ch.qos.logback#logback-classic;1.1.2, doesn’t match ch.qos.logback#logback-classic;1.1.11
Non matching revision detected when sorting. org.springframework.security#spring-security-web depends on commons-codec#commons-codec;1.3, doesn’t match commons-codec#commons-codec;1.10
Module descriptor is processed : junit#junit;4.12
Non matching revision detected when sorting. org.springframework.security#spring-security-web depends on org.assertj#assertj-core;2.2.0, doesn’t match org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.skyscreamer#jsonassert;1.4.0
Module descriptor is processed : org.slf4j#jcl-over-slf4j;1.7.25
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.security#spring-security-web;4.2.7.RELEASE
Sort dependencies of : org.springframework.security#spring-security-config;4.2.7.RELEASE / Number of dependencies = 52
Module descriptor is processed : aopalliance#aopalliance;1.0
Module descriptor is processed : org.springframework.security#spring-security-core;4.2.7.RELEASE
Module descriptor is processed : org.springframework#spring-aop;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-beans;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Module descriptor is processed : commons-logging#commons-logging;1.2
Non matching revision detected when sorting. org.springframework.security#spring-security-config depends on org.aspectj#aspectjweaver;1.8.12, doesn’t match org.aspectj#aspectjweaver;1.8.13
Module descriptor is processed : org.springframework.security#spring-security-web;4.2.7.RELEASE
Module descriptor is processed : org.springframework#spring-tx;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-web;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-webmvc;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.security#spring-security-config depends on ch.qos.logback#logback-classic;1.1.2, doesn’t match ch.qos.logback#logback-classic;1.1.11
Module descriptor is processed : junit#junit;4.12
Non matching revision detected when sorting. org.springframework.security#spring-security-config depends on org.assertj#assertj-core;2.2.0, doesn’t match org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.slf4j#jcl-over-slf4j;1.7.25
Module descriptor is processed : org.springframework#spring-expression;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.security#spring-security-config;4.2.7.RELEASE
Sort dependencies of : org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE / Number of dependencies = 25
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on org.springframework#spring-beans;4.0.9.RELEASE, doesn’t match org.springframework#spring-beans;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on org.springframework#spring-core;4.0.9.RELEASE, doesn’t match org.springframework#spring-core;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on org.springframework#spring-context;4.0.9.RELEASE, doesn’t match org.springframework#spring-context;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on org.springframework#spring-aop;4.0.9.RELEASE, doesn’t match org.springframework#spring-aop;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on org.springframework#spring-webmvc;4.0.9.RELEASE, doesn’t match org.springframework#spring-webmvc;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on org.springframework#spring-test;4.0.9.RELEASE, doesn’t match org.springframework#spring-test;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on org.springframework.security#spring-security-core;3.2.10.RELEASE, doesn’t match org.springframework.security#spring-security-core;4.2.7.RELEASE
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on org.springframework.security#spring-security-config;3.2.10.RELEASE, doesn’t match org.springframework.security#spring-security-config;4.2.7.RELEASE
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on org.springframework.security#spring-security-web;3.2.10.RELEASE, doesn’t match org.springframework.security#spring-security-web;4.2.7.RELEASE
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on commons-codec#commons-codec;1.9, doesn’t match commons-codec#commons-codec;1.10
Sort dependencies of : org.codehaus.jackson#jackson-mapper-asl;1.9.13 / Number of dependencies = 1
Sort dependencies of : org.codehaus.jackson#jackson-core-asl;1.9.13 / Number of dependencies = 0
Sort done for : org.codehaus.jackson#jackson-core-asl;1.9.13
Sort done for : org.codehaus.jackson#jackson-mapper-asl;1.9.13
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on com.fasterxml.jackson.core#jackson-annotations;2.3.2, doesn’t match com.fasterxml.jackson.core#jackson-annotations;2.8.0
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on com.fasterxml.jackson.core#jackson-databind;2.3.2, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on org.apache.httpcomponents#httpclient;4.3.3, doesn’t match org.apache.httpcomponents#httpclient;4.5.5
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on junit#junit;4.11, doesn’t match junit#junit;4.12
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on org.mockito#mockito-core;1.9.5, doesn’t match org.mockito#mockito-core;1.10.19
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on org.slf4j#slf4j-api;1.7.6, doesn’t match org.slf4j#slf4j-api;1.7.25
Sort done for : org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE
Sort dependencies of : org.springframework.amqp#spring-rabbit;1.7.8.RELEASE / Number of dependencies = 12
Non matching revision detected when sorting. org.springframework.amqp#spring-rabbit depends on org.springframework#spring-aop;4.3.15.RELEASE, doesn’t match org.springframework#spring-aop;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.amqp#spring-rabbit depends on org.springframework#spring-tx;4.3.15.RELEASE, doesn’t match org.springframework#spring-tx;4.3.18.RELEASE
Sort dependencies of : org.springframework.amqp#spring-amqp;1.7.8.RELEASE / Number of dependencies = 8
Non matching revision detected when sorting. org.springframework.amqp#spring-amqp depends on org.springframework#spring-core;4.3.15.RELEASE, doesn’t match org.springframework#spring-core;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.amqp#spring-amqp depends on com.fasterxml.jackson.core#jackson-databind;2.8.11.1, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Non matching revision detected when sorting. org.springframework.amqp#spring-amqp depends on org.springframework#spring-messaging;4.3.15.RELEASE, doesn’t match org.springframework#spring-messaging;4.3.18.RELEASE
Module descriptor is processed : org.codehaus.jackson#jackson-mapper-asl;1.9.13
Non matching revision detected when sorting. org.springframework.amqp#spring-amqp depends on org.springframework#spring-context;4.3.15.RELEASE, doesn’t match org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : org.codehaus.jackson#jackson-core-asl;1.9.13
Module descriptor is processed : com.fasterxml.jackson.core#jackson-core;2.8.11
Sort done for : org.springframework.amqp#spring-amqp;1.7.8.RELEASE
Sort dependencies of : org.springframework.retry#spring-retry;1.2.2.RELEASE / Number of dependencies = 10
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Non matching revision detected when sorting. org.springframework.retry#spring-retry depends on org.aspectj#aspectjrt;1.8.9, doesn’t match org.aspectj#aspectjrt;1.8.13
Non matching revision detected when sorting. org.springframework.retry#spring-retry depends on org.aspectj#aspectjweaver;1.8.9, doesn’t match org.aspectj#aspectjweaver;1.8.13
Non matching revision detected when sorting. org.springframework.retry#spring-retry depends on org.springframework#spring-test;4.3.13.RELEASE, doesn’t match org.springframework#spring-test;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.retry#spring-retry depends on org.springframework#spring-context;4.3.13.RELEASE, doesn’t match org.springframework#spring-context;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.retry#spring-retry depends on org.springframework#spring-core;4.3.13.RELEASE, doesn’t match org.springframework#spring-core;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.retry#spring-retry depends on org.springframework#spring-tx;4.3.13.RELEASE, doesn’t match org.springframework#spring-tx;4.3.18.RELEASE
Sort done for : org.springframework.retry#spring-retry;1.2.2.RELEASE
Sort dependencies of : com.rabbitmq#http-client;1.1.1.RELEASE / Number of dependencies = 3
Non matching revision detected when sorting. com.rabbitmq#http-client depends on org.springframework#spring-web;4.3.6.RELEASE, doesn’t match org.springframework#spring-web;4.3.18.RELEASE
Non matching revision detected when sorting. com.rabbitmq#http-client depends on org.apache.httpcomponents#httpclient;4.3.6, doesn’t match org.apache.httpcomponents#httpclient;4.5.5
Non matching revision detected when sorting. com.rabbitmq#http-client depends on com.fasterxml.jackson.core#jackson-databind;2.8.4, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Sort done for : com.rabbitmq#http-client;1.1.1.RELEASE
Sort dependencies of : com.rabbitmq#amqp-client;4.0.3 / Number of dependencies = 7
Non matching revision detected when sorting. com.rabbitmq#amqp-client depends on org.slf4j#slf4j-api;1.7.21, doesn’t match org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : junit#junit;4.12
Non matching revision detected when sorting. com.rabbitmq#amqp-client depends on ch.qos.logback#logback-classic;1.1.7, doesn’t match ch.qos.logback#logback-classic;1.1.11
Non matching revision detected when sorting. com.rabbitmq#amqp-client depends on org.mockito#mockito-core;2.7.9, doesn’t match org.mockito#mockito-core;1.10.19
Sort done for : com.rabbitmq#amqp-client;4.0.3
Module descriptor is processed : ch.qos.logback#logback-classic;1.1.11
Non matching revision detected when sorting. org.springframework.amqp#spring-rabbit depends on org.springframework#spring-messaging;4.3.15.RELEASE, doesn’t match org.springframework#spring-messaging;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.amqp#spring-rabbit depends on org.springframework#spring-context;4.3.15.RELEASE, doesn’t match org.springframework#spring-context;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.amqp#spring-rabbit depends on org.springframework#spring-web;4.3.15.RELEASE, doesn’t match org.springframework#spring-web;4.3.18.RELEASE
Sort done for : org.springframework.amqp#spring-rabbit;1.7.8.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE / Number of dependencies = 17
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-spring-service-connector depends on org.springframework.amqp#spring-rabbit;1.1.1.RELEASE, doesn’t match org.springframework.amqp#spring-rabbit;1.7.8.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE / Number of dependencies = 0
Sort done for : org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-spring-service-connector depends on org.springframework#spring-context;3.1.4.RELEASE, doesn’t match org.springframework#spring-context;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-spring-service-connector depends on org.springframework#spring-context-support;3.1.4.RELEASE, doesn’t match org.springframework#spring-context-support;4.3.18.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE
Sort dependencies of : org.aspectj#aspectjweaver;1.8.13 / Number of dependencies = 0
Sort done for : org.aspectj#aspectjweaver;1.8.13
Module descriptor is processed : org.springframework.boot#spring-boot;1.5.14.RELEASE
Sort dependencies of : org.springframework.boot#spring-boot-test;1.5.14.RELEASE / Number of dependencies = 33
Module descriptor is processed : org.springframework.boot#spring-boot;1.5.14.RELEASE
Module descriptor is processed : com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : com.google.code.gson#gson;2.8.5
Module descriptor is processed : com.jayway.jsonpath#json-path;2.2.0
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.apache.httpcomponents#httpclient;4.5.5
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.hamcrest#hamcrest-core;1.3
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.skyscreamer#jsonassert;1.4.0
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-web;4.3.18.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot;1.5.14.RELEASE
Module descriptor is processed : ch.qos.logback#logback-classic;1.1.11
Module descriptor is processed : org.apache.tomcat.embed#tomcat-embed-core;8.5.31
Non matching revision detected when sorting. org.springframework.boot#spring-boot-test depends on org.codehaus.groovy#groovy;2.4.15, doesn’t match org.codehaus.groovy#groovy;2.5.0
Module descriptor is processed : org.codehaus.groovy#groovy;2.4.15
Non matching revision detected when sorting. org.springframework.boot#spring-boot-test depends on org.codehaus.groovy#groovy-xml;2.4.15, doesn’t match org.codehaus.groovy#groovy-xml;2.5.0
Module descriptor is processed : org.slf4j#jcl-over-slf4j;1.7.25
Module descriptor is processed : org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : org.springframework#spring-webmvc;4.3.18.RELEASE
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-test;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-test;1.5.14.RELEASE
Module descriptor is processed : ch.qos.logback#logback-classic;1.1.11
Sort dependencies of : org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 / Number of dependencies = 1
Module descriptor is processed : org.apache.tomcat.embed#tomcat-embed-core;8.5.31
Sort done for : org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Module descriptor is processed : org.yaml#snakeyaml;1.17
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
Sort dependencies of : org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE / Number of dependencies = 9
Module descriptor is processed : ch.qos.logback#logback-classic;1.1.11
Module descriptor is processed : org.slf4j#jcl-over-slf4j;1.7.25
Module descriptor is processed : org.slf4j#jul-to-slf4j;1.7.25
Sort dependencies of : org.slf4j#log4j-over-slf4j;1.7.25 / Number of dependencies = 3
Module descriptor is processed : org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : junit#junit;4.12
Sort done for : org.slf4j#log4j-over-slf4j;1.7.25
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Module descriptor is processed : org.yaml#snakeyaml;1.17
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Sort dependencies of : org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE / Number of dependencies = 8
Module descriptor is processed : org.apache.tomcat.embed#tomcat-embed-core;8.5.31
Module descriptor is processed : org.apache.tomcat.embed#tomcat-embed-el;8.5.31
Module descriptor is processed : org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE
Module descriptor is processed : org.hibernate#hibernate-validator;5.3.6.Final
Module descriptor is processed : com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : org.springframework#spring-web;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-webmvc;4.3.18.RELEASE
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Sort dependencies of : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE / Number of dependencies = 16
Module descriptor is processed : org.springframework.boot#spring-boot-test;1.5.14.RELEASE
Sort dependencies of : org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE / Number of dependencies = 36
Module descriptor is processed : org.springframework.boot#spring-boot-test;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : com.jayway.jsonpath#json-path;2.2.0
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-web;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-webmvc;4.3.18.RELEASE
Module descriptor is processed : org.springframework.security#spring-security-config;4.2.7.RELEASE
Module descriptor is processed : ch.qos.logback#logback-classic;1.1.11
Sort dependencies of : org.aspectj#aspectjrt;1.8.13 / Number of dependencies = 0
Sort done for : org.aspectj#aspectjrt;1.8.13
Module descriptor is processed : org.aspectj#aspectjweaver;1.8.13
Module descriptor is processed : org.skyscreamer#jsonassert;1.4.0
Module descriptor is processed : org.hibernate#hibernate-validator;5.3.6.Final
Module descriptor is processed : org.apache.tomcat.embed#tomcat-embed-el;8.5.31
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : com.jayway.jsonpath#json-path;2.2.0
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-core;1.3
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.skyscreamer#jsonassert;1.4.0
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort dependencies of : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE / Number of dependencies = 7
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Sort dependencies of : org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE / Number of dependencies = 75
Module descriptor is processed : org.springframework.boot#spring-boot;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11
Sort dependencies of : com.google.guava#guava;18.0 / Number of dependencies = 1
Non matching revision detected when sorting. com.google.guava#guava depends on com.google.code.findbugs#jsr305;1.3.9, doesn’t match com.google.code.findbugs#jsr305;3.0.1
Sort done for : com.google.guava#guava;18.0
Module descriptor is processed : org.hibernate#hibernate-validator;5.3.6.Final
Module descriptor is processed : org.springframework#spring-messaging;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-webmvc;4.3.18.RELEASE
Module descriptor is processed : org.springframework.integration#spring-integration-core;4.3.17.RELEASE
Module descriptor is processed : org.springframework.security#spring-security-web;4.2.7.RELEASE
Module descriptor is processed : org.springframework.security#spring-security-config;4.2.7.RELEASE
Module descriptor is processed : org.apache.tomcat.embed#tomcat-embed-core;8.5.31
Module descriptor is processed : org.apache.tomcat.embed#tomcat-embed-el;8.5.31
Module descriptor is processed : org.springframework.amqp#spring-rabbit;1.7.8.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-test;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-test;1.5.14.RELEASE
Module descriptor is processed : ch.qos.logback#logback-classic;1.1.11
Module descriptor is processed : com.jayway.jsonpath#json-path;2.2.0
Module descriptor is processed : org.aspectj#aspectjrt;1.8.13
Module descriptor is processed : org.skyscreamer#jsonassert;1.4.0
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Module descriptor is processed : org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE
Module descriptor is processed : org.yaml#snakeyaml;1.17
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE / Number of dependencies = 11
Sort dependencies of : org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE / Number of dependencies = 16
Module descriptor is processed : org.springframework#spring-web;4.3.18.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE / Number of dependencies = 15
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Sort dependencies of : org.springframework.security#spring-security-crypto;4.2.7.RELEASE / Number of dependencies = 8
Module descriptor is processed : commons-logging#commons-logging;1.2
Non matching revision detected when sorting. org.springframework.security#spring-security-crypto depends on org.bouncycastle#bcpkix-jdk15on;1.54, doesn’t match org.bouncycastle#bcpkix-jdk15on;1.55
Non matching revision detected when sorting. org.springframework.security#spring-security-crypto depends on ch.qos.logback#logback-classic;1.1.2, doesn’t match ch.qos.logback#logback-classic;1.1.11
Module descriptor is processed : junit#junit;4.12
Non matching revision detected when sorting. org.springframework.security#spring-security-crypto depends on org.assertj#assertj-core;2.2.0, doesn’t match org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.slf4j#jcl-over-slf4j;1.7.25
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.security#spring-security-crypto;4.2.7.RELEASE
Sort dependencies of : org.springframework.security#spring-security-rsa;1.0.3.RELEASE / Number of dependencies = 5
Non matching revision detected when sorting. org.springframework.security#spring-security-rsa depends on org.springframework.security#spring-security-crypto;3.2.8.RELEASE, doesn’t match org.springframework.security#spring-security-crypto;4.2.7.RELEASE
Non matching revision detected when sorting. org.springframework.security#spring-security-rsa depends on org.springframework#spring-core;4.1.9.RELEASE, doesn’t match org.springframework#spring-core;4.3.18.RELEASE
Sort dependencies of : org.bouncycastle#bcpkix-jdk15on;1.55 / Number of dependencies = 1
Sort dependencies of : org.bouncycastle#bcprov-jdk15on;1.55 / Number of dependencies = 0
Sort done for : org.bouncycastle#bcprov-jdk15on;1.55
Sort done for : org.bouncycastle#bcpkix-jdk15on;1.55
Non matching revision detected when sorting. org.springframework.security#spring-security-rsa depends on junit#junit;4.11, doesn’t match junit#junit;4.12
Sort done for : org.springframework.security#spring-security-rsa;1.0.3.RELEASE
Module descriptor is processed : org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE
Sort dependencies of : org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE / Number of dependencies = 8
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Module descriptor is processed : org.springframework#spring-aop;4.3.18.RELEASE
Module descriptor is processed : org.aspectj#aspectjweaver;1.8.13
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE
Module descriptor is processed : org.springframework.retry#spring-retry;1.2.2.RELEASE
Module descriptor is processed : com.jayway.jsonpath#json-path;2.2.0
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-commons depends on org.apache.httpcomponents#httpclient;4.5.1, doesn’t match org.apache.httpcomponents#httpclient;4.5.5
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE / Number of dependencies = 12
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE
Module descriptor is processed : org.springframework.security#spring-security-crypto;4.2.7.RELEASE
Module descriptor is processed : org.springframework.security#spring-security-rsa;1.0.3.RELEASE
Module descriptor is processed : org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
Sort dependencies of : org.springframework.vault#spring-vault-core;1.1.2.RELEASE / Number of dependencies = 17
Non matching revision detected when sorting. org.springframework.vault#spring-vault-core depends on com.fasterxml.jackson.core#jackson-databind;2.8.11.1, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Non matching revision detected when sorting. org.springframework.vault#spring-vault-core depends on org.springframework#spring-core;4.3.15.RELEASE, doesn’t match org.springframework#spring-core;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.vault#spring-vault-core depends on org.springframework#spring-beans;4.3.15.RELEASE, doesn’t match org.springframework#spring-beans;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.vault#spring-vault-core depends on org.springframework#spring-web;4.3.15.RELEASE, doesn’t match org.springframework#spring-web;4.3.18.RELEASE
Module descriptor is processed : org.apache.httpcomponents#httpclient;4.5.5
Module descriptor is processed : org.apache.httpcomponents#httpcore;4.4.9
Non matching revision detected when sorting. org.springframework.vault#spring-vault-core depends on com.amazonaws#aws-java-sdk-core;1.11.208, doesn’t match com.amazonaws#aws-java-sdk-core;1.11.125
Non matching revision detected when sorting. org.springframework.vault#spring-vault-core depends on org.springframework#spring-test;4.3.15.RELEASE, doesn’t match org.springframework#spring-test;4.3.18.RELEASE
Module descriptor is processed : junit#junit;4.12
Non matching revision detected when sorting. org.springframework.vault#spring-vault-core depends on org.mockito#mockito-core;2.10.0, doesn’t match org.mockito#mockito-core;1.10.19
Non matching revision detected when sorting. org.springframework.vault#spring-vault-core depends on org.assertj#assertj-core;3.8.0, doesn’t match org.assertj#assertj-core;2.6.0
Non matching revision detected when sorting. org.springframework.vault#spring-vault-core depends on com.jayway.jsonpath#json-path;2.4.0, doesn’t match com.jayway.jsonpath#json-path;2.2.0
Sort done for : org.springframework.vault#spring-vault-core;1.1.2.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-vault-config depends on com.amazonaws#aws-java-sdk-core;1.11.345, doesn’t match com.amazonaws#aws-java-sdk-core;1.11.125
Module descriptor is processed : org.apache.httpcomponents#httpcore;4.4.9
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE
Module descriptor is processed : org.hibernate#hibernate-validator;5.3.6.Final
Module descriptor is processed : org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-vault-config depends on org.assertj#assertj-core;2.8.0, doesn’t match org.assertj#assertj-core;2.6.0
Sort done for : org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE
Sort dependencies of : org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE / Number of dependencies = 8
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Module descriptor is processed : org.springframework#spring-messaging;4.3.18.RELEASE
Module descriptor is processed : org.springframework.amqp#spring-rabbit;1.7.8.RELEASE
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE
Module descriptor is processed : org.hibernate#hibernate-validator;5.3.6.Final
Module descriptor is processed : org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-vault-config-rabbitmq depends on org.assertj#assertj-core;2.8.0, doesn’t match org.assertj#assertj-core;2.6.0
Sort done for : org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE / Number of dependencies = 12
Module descriptor is processed : org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE / Number of dependencies = 4
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE / Number of dependencies = 9
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE / Number of dependencies = 16
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE
Module descriptor is processed : org.springframework.retry#spring-retry;1.2.2.RELEASE
Sort dependencies of : com.ecwid.consul#consul-api;1.3.0 / Number of dependencies = 8
Non matching revision detected when sorting. com.ecwid.consul#consul-api depends on com.google.code.gson#gson;2.8.2, doesn’t match com.google.code.gson#gson;2.8.5
Non matching revision detected when sorting. com.ecwid.consul#consul-api depends on com.google.code.gson#gson;2.8.2, doesn’t match com.google.code.gson#gson;2.3.1
Non matching revision detected when sorting. com.ecwid.consul#consul-api depends on org.apache.httpcomponents#httpcore;4.4.8, doesn’t match org.apache.httpcomponents#httpcore;4.4.9
Non matching revision detected when sorting. com.ecwid.consul#consul-api depends on org.apache.httpcomponents#httpclient;4.5.3, doesn’t match org.apache.httpcomponents#httpclient;4.5.5
Module descriptor is processed : junit#junit;4.12
Non matching revision detected when sorting. com.ecwid.consul#consul-api depends on org.mockito#mockito-core;2.8.9, doesn’t match org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Sort done for : com.ecwid.consul#consul-api;1.3.0
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-consul-core depends on com.google.code.gson#gson;2.3.1, doesn’t match com.google.code.gson#gson;2.8.5
Module descriptor is processed : com.google.code.gson#gson;2.3.1
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-consul-core depends on org.apache.httpcomponents#httpclient;4.5.2, doesn’t match org.apache.httpcomponents#httpclient;4.5.5
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-consul-core depends on org.apache.httpcomponents#httpcore;4.4.5, doesn’t match org.apache.httpcomponents#httpcore;4.4.9
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-consul-core depends on org.apache.httpcomponents#httpclient;4.5.2, doesn’t match org.apache.httpcomponents#httpclient;4.5.5
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-consul-core depends on org.apache.httpcomponents#httpcore;4.4.5, doesn’t match org.apache.httpcomponents#httpcore;4.4.9
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE
Module descriptor is processed : com.ecwid.consul#consul-api;1.3.0
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-starter-consul depends on com.google.code.gson#gson;2.3.1, doesn’t match com.google.code.gson#gson;2.8.5
Module descriptor is processed : com.google.code.gson#gson;2.3.1
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-starter-consul depends on org.apache.httpcomponents#httpclient;4.5.2, doesn’t match org.apache.httpcomponents#httpclient;4.5.5
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-starter-consul depends on org.apache.httpcomponents#httpcore;4.4.5, doesn’t match org.apache.httpcomponents#httpcore;4.4.9
Sort done for : org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE / Number of dependencies = 11
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Module descriptor is processed : com.ecwid.consul#consul-api;1.3.0
Module descriptor is processed : org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
Module descriptor is processed : org.springframework.retry#spring-retry;1.2.2.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE / Number of dependencies = 8
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE / Number of dependencies = 24
Module descriptor is processed : org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE / Number of dependencies = 15
Module descriptor is processed : org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
Module descriptor is processed : org.springframework#spring-web;4.3.18.RELEASE
Module descriptor is processed : com.fasterxml.jackson.core#jackson-annotations;2.8.0
Module descriptor is processed : org.springframework.retry#spring-retry;1.2.2.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE
Module descriptor is processed : com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Module descriptor is processed : commons-codec#commons-codec;1.10
Sort done for : org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE / Number of dependencies = 15
Module descriptor is processed : org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.security#spring-security-crypto;4.2.7.RELEASE
Module descriptor is processed : org.springframework.security#spring-security-rsa;1.0.3.RELEASE
Sort dependencies of : org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r / Number of dependencies = 3
Non matching revision detected when sorting. org.eclipse.jgit#org.eclipse.jgit depends on com.jcraft#jsch;0.1.50, doesn’t match com.jcraft#jsch;0.1.54
Sort dependencies of : com.googlecode.javaewah#JavaEWAH;0.7.9 / Number of dependencies = 1
Non matching revision detected when sorting. com.googlecode.javaewah#JavaEWAH depends on junit#junit;4.10, doesn’t match junit#junit;4.12
Sort done for : com.googlecode.javaewah#JavaEWAH;0.7.9
Non matching revision detected when sorting. org.eclipse.jgit#org.eclipse.jgit depends on org.apache.httpcomponents#httpclient;4.1.3, doesn’t match org.apache.httpcomponents#httpclient;4.5.5
Sort done for : org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r
Module descriptor is processed : org.yaml#snakeyaml;1.17
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-config-server depends on com.amazonaws#aws-java-sdk-core;1.11.52, doesn’t match com.amazonaws#aws-java-sdk-core;1.11.125
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE
Module descriptor is processed : com.ecwid.consul#consul-api;1.3.0
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-consul-discovery depends on com.google.code.gson#gson;2.3.1, doesn’t match com.google.code.gson#gson;2.8.5
Module descriptor is processed : com.google.code.gson#gson;2.3.1
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-consul-discovery depends on org.apache.httpcomponents#httpclient;4.5.2, doesn’t match org.apache.httpcomponents#httpclient;4.5.5
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-consul-discovery depends on org.apache.httpcomponents#httpcore;4.4.5, doesn’t match org.apache.httpcomponents#httpcore;4.4.9
Sort dependencies of : org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE / Number of dependencies = 38
Module descriptor is processed : org.springframework.boot#spring-boot;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Sort dependencies of : org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE / Number of dependencies = 9
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Module descriptor is processed : org.springframework#spring-aop;4.3.18.RELEASE
Module descriptor is processed : org.springframework.security#spring-security-config;4.2.7.RELEASE
Module descriptor is processed : org.springframework.security#spring-security-web;4.2.7.RELEASE
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE
Module descriptor is processed : org.springframework.retry#spring-retry;1.2.2.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
Sort dependencies of : com.netflix.archaius#archaius-core;0.7.4 / Number of dependencies = 7
Sort dependencies of : com.google.code.findbugs#jsr305;3.0.1 / Number of dependencies = 0
Sort done for : com.google.code.findbugs#jsr305;3.0.1
Sort dependencies of : commons-configuration#commons-configuration;1.8 / Number of dependencies = 27
Non matching revision detected when sorting. commons-configuration#commons-configuration depends on commons-collections#commons-collections;3.2.1, doesn’t match commons-collections#commons-collections;3.2.2
Sort dependencies of : commons-lang#commons-lang;2.6 / Number of dependencies = 1
Non matching revision detected when sorting. commons-lang#commons-lang depends on junit#junit;3.8.1, doesn’t match junit#junit;4.12
Sort done for : commons-lang#commons-lang;2.6
Non matching revision detected when sorting. commons-configuration#commons-configuration depends on commons-logging#commons-logging;1.1.1, doesn’t match commons-logging#commons-logging;1.2
Non matching revision detected when sorting. commons-configuration#commons-configuration depends on commons-beanutils#commons-beanutils;1.8.3, doesn’t match commons-beanutils#commons-beanutils;1.9.3
Non matching revision detected when sorting. commons-configuration#commons-configuration depends on commons-codec#commons-codec;1.5, doesn’t match commons-codec#commons-codec;1.10
Sort dependencies of : commons-jxpath#commons-jxpath;1.3 / Number of dependencies = 8
Non matching revision detected when sorting. commons-jxpath#commons-jxpath depends on junit#junit;3.8.1, doesn’t match junit#junit;4.12
Non matching revision detected when sorting. commons-jxpath#commons-jxpath depends on commons-beanutils#commons-beanutils;1.7.0, doesn’t match commons-beanutils#commons-beanutils;1.9.3
Sort done for : commons-jxpath#commons-jxpath;1.3
Non matching revision detected when sorting. commons-configuration#commons-configuration depends on junit#junit;4.10, doesn’t match junit#junit;4.12
Non matching revision detected when sorting. commons-configuration#commons-configuration depends on org.slf4j#slf4j-api;1.5.6, doesn’t match org.slf4j#slf4j-api;1.7.25
Sort done for : commons-configuration#commons-configuration;1.8
Non matching revision detected when sorting. com.netflix.archaius#archaius-core depends on org.slf4j#slf4j-api;1.6.4, doesn’t match org.slf4j#slf4j-api;1.7.25
Non matching revision detected when sorting. com.netflix.archaius#archaius-core depends on com.google.guava#guava;16.0, doesn’t match com.google.guava#guava;18.0
Non matching revision detected when sorting. com.netflix.archaius#archaius-core depends on com.fasterxml.jackson.core#jackson-annotations;2.4.3, doesn’t match com.fasterxml.jackson.core#jackson-annotations;2.8.0
Non matching revision detected when sorting. com.netflix.archaius#archaius-core depends on com.fasterxml.jackson.core#jackson-core;2.4.3, doesn’t match com.fasterxml.jackson.core#jackson-core;2.8.11
Non matching revision detected when sorting. com.netflix.archaius#archaius-core depends on com.fasterxml.jackson.core#jackson-databind;2.4.3, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Sort done for : com.netflix.archaius#archaius-core;0.7.4
Module descriptor is processed : commons-configuration#commons-configuration;1.8
Sort dependencies of : com.netflix.servo#servo-core;0.10.1 / Number of dependencies = 4
Non matching revision detected when sorting. com.netflix.servo#servo-core depends on org.slf4j#slf4j-api;1.7.12, doesn’t match org.slf4j#slf4j-api;1.7.25
Non matching revision detected when sorting. com.netflix.servo#servo-core depends on com.google.guava#guava;16.0.1, doesn’t match com.google.guava#guava;18.0
Sort dependencies of : com.google.code.findbugs#annotations;2.0.0 / Number of dependencies = 0
Sort done for : com.google.code.findbugs#annotations;2.0.0
Sort dependencies of : com.netflix.servo#servo-internal;0.10.1 / Number of dependencies = 3
Non matching revision detected when sorting. com.netflix.servo#servo-internal depends on org.slf4j#slf4j-api;1.7.12, doesn’t match org.slf4j#slf4j-api;1.7.25
Non matching revision detected when sorting. com.netflix.servo#servo-internal depends on com.google.guava#guava;16.0.1, doesn’t match com.google.guava#guava;18.0
Module descriptor is processed : com.google.code.findbugs#annotations;2.0.0
Sort done for : com.netflix.servo#servo-internal;0.10.1
Sort done for : com.netflix.servo#servo-core;0.10.1
Sort dependencies of : com.netflix.netflix-commons#netflix-commons-util;0.1.1 / Number of dependencies = 3
Non matching revision detected when sorting. com.netflix.netflix-commons#netflix-commons-util depends on junit#junit;4.10, doesn’t match junit#junit;4.12
Non matching revision detected when sorting. com.netflix.netflix-commons#netflix-commons-util depends on org.slf4j#slf4j-api;1.6.4, doesn’t match org.slf4j#slf4j-api;1.7.25
Sort done for : com.netflix.netflix-commons#netflix-commons-util;0.1.1
Module descriptor is processed : javax.inject#javax.inject;1
Sort dependencies of : com.netflix.ribbon#ribbon-loadbalancer;2.2.5 / Number of dependencies = 8
Sort dependencies of : com.netflix.ribbon#ribbon-core;2.2.5 / Number of dependencies = 6
Non matching revision detected when sorting. com.netflix.ribbon#ribbon-core depends on org.slf4j#slf4j-api;1.6.4, doesn’t match org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : com.google.code.findbugs#annotations;2.0.0
Non matching revision detected when sorting. com.netflix.ribbon#ribbon-core depends on com.google.guava#guava;16.0, doesn’t match com.google.guava#guava;18.0
Module descriptor is processed : commons-configuration#commons-configuration;1.8
Module descriptor is processed : commons-lang#commons-lang;2.6
Module descriptor is processed : com.netflix.archaius#archaius-core;0.7.4
Sort done for : com.netflix.ribbon#ribbon-core;2.2.5
Sort dependencies of : com.netflix.netflix-commons#netflix-statistics;0.1.1 / Number of dependencies = 4
Non matching revision detected when sorting. com.netflix.netflix-commons#netflix-statistics depends on junit#junit;4.10, doesn’t match junit#junit;4.12
Non matching revision detected when sorting. com.netflix.netflix-commons#netflix-statistics depends on org.slf4j#slf4j-api;1.6.4, doesn’t match org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : com.google.code.findbugs#annotations;2.0.0
Sort done for : com.netflix.netflix-commons#netflix-statistics;0.1.1
Non matching revision detected when sorting. com.netflix.ribbon#ribbon-loadbalancer depends on io.reactivex#rxjava;1.0.9, doesn’t match io.reactivex#rxjava;1.2.0
Non matching revision detected when sorting. com.netflix.ribbon#ribbon-loadbalancer depends on org.slf4j#slf4j-api;1.7.12, doesn’t match org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : com.netflix.servo#servo-core;0.10.1
Non matching revision detected when sorting. com.netflix.ribbon#ribbon-loadbalancer depends on com.google.guava#guava;16.0.1, doesn’t match com.google.guava#guava;18.0
Module descriptor is processed : com.netflix.archaius#archaius-core;0.7.4
Module descriptor is processed : com.netflix.netflix-commons#netflix-commons-util;0.1.1
Sort done for : com.netflix.ribbon#ribbon-loadbalancer;2.2.5
Sort dependencies of : com.netflix.hystrix#hystrix-core;1.5.12 / Number of dependencies = 4
Non matching revision detected when sorting. com.netflix.hystrix#hystrix-core depends on org.slf4j#slf4j-api;1.7.0, doesn’t match org.slf4j#slf4j-api;1.7.25
Non matching revision detected when sorting. com.netflix.hystrix#hystrix-core depends on com.netflix.archaius#archaius-core;0.4.1, doesn’t match com.netflix.archaius#archaius-core;0.7.4
Sort dependencies of : io.reactivex#rxjava;1.2.0 / Number of dependencies = 0
Sort done for : io.reactivex#rxjava;1.2.0
Sort dependencies of : org.hdrhistogram#HdrHistogram;2.1.9 / Number of dependencies = 1
Non matching revision detected when sorting. org.hdrhistogram#HdrHistogram depends on junit#junit;4.10, doesn’t match junit#junit;4.12
Sort done for : org.hdrhistogram#HdrHistogram;2.1.9
Sort done for : com.netflix.hystrix#hystrix-core;1.5.12
Sort dependencies of : com.netflix.ribbon#ribbon;2.2.5 / Number of dependencies = 16
Module descriptor is processed : com.netflix.ribbon#ribbon-core;2.2.5
Sort dependencies of : com.netflix.ribbon#ribbon-transport;2.2.5 / Number of dependencies = 10
Module descriptor is processed : com.netflix.ribbon#ribbon-core;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-loadbalancer;2.2.5
Non matching revision detected when sorting. com.netflix.ribbon#ribbon-transport depends on io.reactivex#rxjava;1.0.10, doesn’t match io.reactivex#rxjava;1.2.0
Sort dependencies of : io.reactivex#rxnetty;0.4.9 / Number of dependencies = 4
Non matching revision detected when sorting. io.reactivex#rxnetty depends on io.reactivex#rxjava;1.0.10, doesn’t match io.reactivex#rxjava;1.2.0
Sort dependencies of : io.netty#netty-codec-http;4.0.27.Final / Number of dependencies = 11
Sort dependencies of : io.netty#netty-codec;4.0.27.Final / Number of dependencies = 14
Sort dependencies of : io.netty#netty-transport;4.0.27.Final / Number of dependencies = 9
Sort dependencies of : io.netty#netty-buffer;4.0.27.Final / Number of dependencies = 9
Sort dependencies of : io.netty#netty-common;4.0.27.Final / Number of dependencies = 12
Non matching revision detected when sorting. io.netty#netty-common depends on org.slf4j#slf4j-api;1.7.5, doesn’t match org.slf4j#slf4j-api;1.7.25
Non matching revision detected when sorting. io.netty#netty-common depends on commons-logging#commons-logging;1.1.3, doesn’t match commons-logging#commons-logging;1.2
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Non matching revision detected when sorting. io.netty#netty-common depends on org.mockito#mockito-core;1.10.8, doesn’t match org.mockito#mockito-core;1.10.19
Non matching revision detected when sorting. io.netty#netty-common depends on ch.qos.logback#logback-classic;1.0.13, doesn’t match ch.qos.logback#logback-classic;1.1.11
Sort done for : io.netty#netty-common;4.0.27.Final
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Non matching revision detected when sorting. io.netty#netty-buffer depends on org.mockito#mockito-core;1.10.8, doesn’t match org.mockito#mockito-core;1.10.19
Non matching revision detected when sorting. io.netty#netty-buffer depends on ch.qos.logback#logback-classic;1.0.13, doesn’t match ch.qos.logback#logback-classic;1.1.11
Sort done for : io.netty#netty-buffer;4.0.27.Final
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Non matching revision detected when sorting. io.netty#netty-transport depends on org.mockito#mockito-core;1.10.8, doesn’t match org.mockito#mockito-core;1.10.19
Non matching revision detected when sorting. io.netty#netty-transport depends on ch.qos.logback#logback-classic;1.0.13, doesn’t match ch.qos.logback#logback-classic;1.1.11
Sort done for : io.netty#netty-transport;4.0.27.Final
Non matching revision detected when sorting. io.netty#netty-codec depends on com.google.protobuf#protobuf-java;2.5.0, doesn’t match com.google.protobuf#protobuf-java;2.6.1
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Non matching revision detected when sorting. io.netty#netty-codec depends on org.mockito#mockito-core;1.10.8, doesn’t match org.mockito#mockito-core;1.10.19
Non matching revision detected when sorting. io.netty#netty-codec depends on ch.qos.logback#logback-classic;1.0.13, doesn’t match ch.qos.logback#logback-classic;1.1.11
Sort done for : io.netty#netty-codec;4.0.27.Final
Sort dependencies of : io.netty#netty-handler;4.0.27.Final / Number of dependencies = 17
Module descriptor is processed : io.netty#netty-buffer;4.0.27.Final
Module descriptor is processed : io.netty#netty-transport;4.0.27.Final
Module descriptor is processed : io.netty#netty-codec;4.0.27.Final
Non matching revision detected when sorting. io.netty#netty-handler depends on org.bouncycastle#bcpkix-jdk15on;1.50, doesn’t match org.bouncycastle#bcpkix-jdk15on;1.55
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Non matching revision detected when sorting. io.netty#netty-handler depends on org.mockito#mockito-core;1.10.8, doesn’t match org.mockito#mockito-core;1.10.19
Non matching revision detected when sorting. io.netty#netty-handler depends on ch.qos.logback#logback-classic;1.0.13, doesn’t match ch.qos.logback#logback-classic;1.1.11
Sort done for : io.netty#netty-handler;4.0.27.Final
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Non matching revision detected when sorting. io.netty#netty-codec-http depends on org.mockito#mockito-core;1.10.8, doesn’t match org.mockito#mockito-core;1.10.19
Non matching revision detected when sorting. io.netty#netty-codec-http depends on ch.qos.logback#logback-classic;1.0.13, doesn’t match ch.qos.logback#logback-classic;1.1.11
Sort done for : io.netty#netty-codec-http;4.0.27.Final
Sort dependencies of : io.netty#netty-transport-native-epoll;4.0.27.Final / Number of dependencies = 13
Module descriptor is processed : io.netty#netty-common;4.0.27.Final
Module descriptor is processed : io.netty#netty-buffer;4.0.27.Final
Module descriptor is processed : io.netty#netty-transport;4.0.27.Final
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Non matching revision detected when sorting. io.netty#netty-transport-native-epoll depends on org.mockito#mockito-core;1.10.8, doesn’t match org.mockito#mockito-core;1.10.19
Non matching revision detected when sorting. io.netty#netty-transport-native-epoll depends on ch.qos.logback#logback-classic;1.0.13, doesn’t match ch.qos.logback#logback-classic;1.1.11
Sort done for : io.netty#netty-transport-native-epoll;4.0.27.Final
Non matching revision detected when sorting. io.reactivex#rxnetty depends on org.slf4j#slf4j-api;1.7.6, doesn’t match org.slf4j#slf4j-api;1.7.25
Sort done for : io.reactivex#rxnetty;0.4.9
Sort dependencies of : io.reactivex#rxnetty-contexts;0.4.9 / Number of dependencies = 2
Non matching revision detected when sorting. io.reactivex#rxnetty-contexts depends on io.reactivex#rxjava;1.0.10, doesn’t match io.reactivex#rxjava;1.2.0
Module descriptor is processed : io.reactivex#rxnetty;0.4.9
Sort done for : io.reactivex#rxnetty-contexts;0.4.9
Sort dependencies of : io.reactivex#rxnetty-servo;0.4.9 / Number of dependencies = 3
Non matching revision detected when sorting. io.reactivex#rxnetty-servo depends on io.reactivex#rxjava;1.0.10, doesn’t match io.reactivex#rxjava;1.2.0
Module descriptor is processed : io.reactivex#rxnetty;0.4.9
Non matching revision detected when sorting. io.reactivex#rxnetty-servo depends on com.netflix.servo#servo-core;0.7.5, doesn’t match com.netflix.servo#servo-core;0.10.1
Sort done for : io.reactivex#rxnetty-servo;0.4.9
Module descriptor is processed : javax.inject#javax.inject;1
Non matching revision detected when sorting. com.netflix.ribbon#ribbon-transport depends on org.slf4j#slf4j-api;1.7.12, doesn’t match org.slf4j#slf4j-api;1.7.25
Non matching revision detected when sorting. com.netflix.ribbon#ribbon-transport depends on com.google.guava#guava;16.0.1, doesn’t match com.google.guava#guava;18.0
Module descriptor is processed : com.netflix.archaius#archaius-core;0.7.4
Sort done for : com.netflix.ribbon#ribbon-transport;2.2.5
Non matching revision detected when sorting. com.netflix.ribbon#ribbon depends on com.netflix.hystrix#hystrix-core;1.4.3, doesn’t match com.netflix.hystrix#hystrix-core;1.5.12
Module descriptor is processed : javax.inject#javax.inject;1
Non matching revision detected when sorting. com.netflix.ribbon#ribbon depends on io.reactivex#rxjava;1.0.10, doesn’t match io.reactivex#rxjava;1.2.0
Module descriptor is processed : io.reactivex#rxnetty;0.4.9
Module descriptor is processed : commons-configuration#commons-configuration;1.8
Non matching revision detected when sorting. com.netflix.ribbon#ribbon depends on com.google.guava#guava;16.0.1, doesn’t match com.google.guava#guava;18.0
Module descriptor is processed : com.netflix.archaius#archaius-core;0.7.4
Module descriptor is processed : junit#junit;4.12
Sort dependencies of : com.netflix.ribbon#ribbon-eureka;2.2.5 / Number of dependencies = 6
Module descriptor is processed : com.netflix.ribbon#ribbon-core;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-loadbalancer;2.2.5
Non matching revision detected when sorting. com.netflix.ribbon#ribbon-eureka depends on com.netflix.eureka#eureka-client;1.4.6, doesn’t match com.netflix.eureka#eureka-client;1.7.2
Module descriptor is processed : com.google.code.findbugs#annotations;2.0.0
Non matching revision detected when sorting. com.netflix.ribbon#ribbon-eureka depends on org.slf4j#slf4j-api;1.7.12, doesn’t match org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : com.netflix.archaius#archaius-core;0.7.4
Sort done for : com.netflix.ribbon#ribbon-eureka;2.2.5
Sort done for : com.netflix.ribbon#ribbon;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-core;2.2.5
Sort dependencies of : com.netflix.ribbon#ribbon-httpclient;2.2.5 / Number of dependencies = 12
Module descriptor is processed : com.netflix.ribbon#ribbon-core;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-loadbalancer;2.2.5
Module descriptor is processed : commons-collections#commons-collections;3.2.2
Non matching revision detected when sorting. com.netflix.ribbon#ribbon-httpclient depends on org.apache.httpcomponents#httpclient;4.2.1, doesn’t match org.apache.httpcomponents#httpclient;4.5.5
Module descriptor is processed : com.google.code.findbugs#annotations;2.0.0
Sort dependencies of : com.sun.jersey#jersey-client;1.19.1 / Number of dependencies = 3
Non matching revision detected when sorting. com.sun.jersey#jersey-client depends on junit#junit;4.8.2, doesn’t match junit#junit;4.12
Sort done for : com.sun.jersey#jersey-client;1.19.1
Sort dependencies of : com.sun.jersey.contribs#jersey-apache-client4;1.19.1 / Number of dependencies = 2
Non matching revision detected when sorting. com.sun.jersey.contribs#jersey-apache-client4 depends on org.apache.httpcomponents#httpclient;4.1.1, doesn’t match org.apache.httpcomponents#httpclient;4.5.5
Non matching revision detected when sorting. com.sun.jersey.contribs#jersey-apache-client4 depends on junit#junit;4.8.2, doesn’t match junit#junit;4.12
Sort done for : com.sun.jersey.contribs#jersey-apache-client4;1.19.1
Non matching revision detected when sorting. com.netflix.ribbon#ribbon-httpclient depends on org.slf4j#slf4j-api;1.7.12, doesn’t match org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : com.netflix.servo#servo-core;0.10.1
Non matching revision detected when sorting. com.netflix.ribbon#ribbon-httpclient depends on com.google.guava#guava;16.0.1, doesn’t match com.google.guava#guava;18.0
Module descriptor is processed : com.netflix.archaius#archaius-core;0.7.4
Module descriptor is processed : com.netflix.netflix-commons#netflix-commons-util;0.1.1
Sort done for : com.netflix.ribbon#ribbon-httpclient;2.2.5
Module descriptor is processed : io.reactivex#rxjava;1.2.0
Module descriptor is processed : com.sun.jersey.contribs#jersey-apache-client4;1.19.1
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Module descriptor is processed : org.aspectj#aspectjweaver;1.8.13
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-netflix-core depends on com.google.protobuf#protobuf-java;3.4.0, doesn’t match com.google.protobuf#protobuf-java;2.6.1
Sort done for : org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE / Number of dependencies = 2
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE / Number of dependencies = 8
Sort dependencies of : org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE / Number of dependencies = 5
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Module descriptor is processed : org.springframework.security#spring-security-rsa;1.0.3.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE
Module descriptor is processed : com.netflix.archaius#archaius-core;0.7.4
Module descriptor is processed : commons-configuration#commons-configuration;1.8
Module descriptor is processed : com.fasterxml.jackson.core#jackson-annotations;2.8.0
Module descriptor is processed : com.fasterxml.jackson.core#jackson-core;2.8.11
Module descriptor is processed : com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : com.google.guava#guava;18.0
Sort done for : org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE
Module descriptor is processed : com.netflix.ribbon#ribbon;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-core;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-httpclient;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-loadbalancer;2.2.5
Module descriptor is processed : org.springframework.retry#spring-retry;1.2.2.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-consul-discovery depends on joda-time#joda-time;2.7, doesn’t match joda-time#joda-time;2.9.9
Sort dependencies of : joda-time#joda-time;2.7 / Number of dependencies = 2
Non matching revision detected when sorting. joda-time#joda-time depends on junit#junit;3.8.2, doesn’t match junit#junit;4.12
Sort done for : joda-time#joda-time;2.7
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE / Number of dependencies = 2
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE / Number of dependencies = 8
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE
Module descriptor is processed : com.netflix.ribbon#ribbon;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-core;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-httpclient;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-loadbalancer;2.2.5
Module descriptor is processed : io.reactivex#rxjava;1.2.0
Sort done for : org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-starter-consul-discovery depends on joda-time#joda-time;2.7, doesn’t match joda-time#joda-time;2.9.9
Module descriptor is processed : joda-time#joda-time;2.7
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE
Module descriptor is processed : org.hibernate#hibernate-validator;5.3.6.Final
Module descriptor is processed : org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-vault-config-consul depends on org.assertj#assertj-core;2.8.0, doesn’t match org.assertj#assertj-core;2.6.0
Sort done for : org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE / Number of dependencies = 17
Module descriptor is processed : org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE
Module descriptor is processed : org.apache.httpcomponents#httpclient;4.5.5
Module descriptor is processed : org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE
Module descriptor is processed : org.hibernate#hibernate-validator;5.3.6.Final
Module descriptor is processed : org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-vault-config-databases depends on org.assertj#assertj-core;2.8.0, doesn’t match org.assertj#assertj-core;2.6.0
Sort done for : org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE / Number of dependencies = 10
Module descriptor is processed : org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE
Module descriptor is processed : org.hibernate#hibernate-validator;5.3.6.Final
Module descriptor is processed : org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-vault-config-aws depends on org.assertj#assertj-core;2.8.0, doesn’t match org.assertj#assertj-core;2.6.0
Sort done for : org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE / Number of dependencies = 27
Sort dependencies of : org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE / Number of dependencies = 32
Sort dependencies of : org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE / Number of dependencies = 10
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-contract-spec depends on org.codehaus.groovy#groovy;2.4.15, doesn’t match org.codehaus.groovy#groovy;2.5.0
Module descriptor is processed : org.codehaus.groovy#groovy;2.4.15
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-contract-spec depends on org.codehaus.groovy#groovy-nio;2.4.15, doesn’t match org.codehaus.groovy#groovy-nio;2.5.0
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-contract-spec depends on org.codehaus.groovy#groovy-json;2.4.15, doesn’t match org.codehaus.groovy#groovy-json;2.5.0
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-contract-spec depends on org.codehaus.groovy#groovy-xml;2.4.15, doesn’t match org.codehaus.groovy#groovy-xml;2.5.0
Sort dependencies of : dk.brics.automaton#automaton;1.11-8 / Number of dependencies = 0
Sort done for : dk.brics.automaton#automaton;1.11-8
Sort dependencies of : org.apache.commons#commons-text;1.1 / Number of dependencies = 3
Sort dependencies of : org.apache.commons#commons-lang3;3.5 / Number of dependencies = 4
Module descriptor is processed : junit#junit;4.12
Non matching revision detected when sorting. org.apache.commons#commons-lang3 depends on commons-io#commons-io;2.5, doesn’t match commons-io#commons-io;2.1
Sort done for : org.apache.commons#commons-lang3;3.5
Module descriptor is processed : junit#junit;4.12
Sort done for : org.apache.commons#commons-text;1.1
Module descriptor is processed : org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : org.springframework#spring-messaging;4.3.18.RELEASE
Module descriptor is processed : org.springframework.amqp#spring-rabbit;1.7.8.RELEASE
Module descriptor is processed : javax.inject#javax.inject;1
Module descriptor is processed : org.slf4j#slf4j-api;1.7.25
Sort dependencies of : com.github.tomakehurst#wiremock-standalone;2.16.0 / Number of dependencies = 0
Sort done for : com.github.tomakehurst#wiremock-standalone;2.16.0
Sort dependencies of : com.toomuchcoding.jsonassert#jsonassert;0.4.12 / Number of dependencies = 6
Module descriptor is processed : com.jayway.jsonpath#json-path;2.2.0
Module descriptor is processed : org.objenesis#objenesis;2.1
Non matching revision detected when sorting. com.toomuchcoding.jsonassert#jsonassert depends on ch.qos.logback#logback-classic;1.1.2, doesn’t match ch.qos.logback#logback-classic;1.1.11
Sort done for : com.toomuchcoding.jsonassert#jsonassert;0.4.12
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-contract-verifier depends on org.codehaus.groovy#groovy;2.4.15, doesn’t match org.codehaus.groovy#groovy;2.5.0
Module descriptor is processed : org.codehaus.groovy#groovy;2.4.15
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-contract-verifier depends on org.codehaus.groovy#groovy-nio;2.4.15, doesn’t match org.codehaus.groovy#groovy-nio;2.5.0
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-contract-verifier depends on org.codehaus.groovy#groovy-json;2.4.15, doesn’t match org.codehaus.groovy#groovy-json;2.5.0
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-contract-verifier depends on org.codehaus.groovy#groovy-xml;2.4.15, doesn’t match org.codehaus.groovy#groovy-xml;2.5.0
Module descriptor is processed : org.skyscreamer#jsonassert;1.4.0
Sort dependencies of : com.github.jknack#handlebars;4.0.6 / Number of dependencies = 12
Non matching revision detected when sorting. com.github.jknack#handlebars depends on org.apache.commons#commons-lang3;3.1, doesn’t match org.apache.commons#commons-lang3;3.5
Sort dependencies of : org.antlr#antlr4-runtime;4.5.1-1 / Number of dependencies = 0
Sort done for : org.antlr#antlr4-runtime;4.5.1-1
Sort dependencies of : org.mozilla#rhino;1.7R4 / Number of dependencies = 0
Sort done for : org.mozilla#rhino;1.7R4
Non matching revision detected when sorting. com.github.jknack#handlebars depends on org.slf4j#slf4j-api;1.6.4, doesn’t match org.slf4j#slf4j-api;1.7.25
Non matching revision detected when sorting. com.github.jknack#handlebars depends on ch.qos.logback#logback-classic;1.0.3, doesn’t match ch.qos.logback#logback-classic;1.1.11
Non matching revision detected when sorting. com.github.jknack#handlebars depends on junit#junit;4.11, doesn’t match junit#junit;4.12
Non matching revision detected when sorting. com.github.jknack#handlebars depends on org.yaml#snakeyaml;1.10, doesn’t match org.yaml#snakeyaml;1.17
Sort done for : com.github.jknack#handlebars;4.0.6
Sort dependencies of : commons-beanutils#commons-beanutils;1.9.3 / Number of dependencies = 4
Module descriptor is processed : commons-logging#commons-logging;1.2
Module descriptor is processed : commons-collections#commons-collections;3.2.2
Module descriptor is processed : junit#junit;4.12
Sort done for : commons-beanutils#commons-beanutils;1.9.3
Module descriptor is processed : org.yaml#snakeyaml;1.17
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE / Number of dependencies = 10
Sort done for : org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : com.sun.jersey#jersey-client;1.19.1
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE / Number of dependencies = 9
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE / Number of dependencies = 2
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE / Number of dependencies = 14
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Sort dependencies of : org.apache.curator#curator-framework;2.11.1 / Number of dependencies = 4
Sort dependencies of : org.apache.curator#curator-client;2.11.1 / Number of dependencies = 7
Sort dependencies of : org.apache.zookeeper#zookeeper;3.4.8 / Number of dependencies = 17
Non matching revision detected when sorting. org.apache.zookeeper#zookeeper depends on org.slf4j#slf4j-api;1.6.1, doesn’t match org.slf4j#slf4j-api;1.7.25
Sort dependencies of : jline#jline;0.9.94 / Number of dependencies = 1
Non matching revision detected when sorting. jline#jline depends on junit#junit;3.8.1, doesn’t match junit#junit;4.12
Sort done for : jline#jline;0.9.94
Non matching revision detected when sorting. org.apache.zookeeper#zookeeper depends on junit#junit;4.8.1, doesn’t match junit#junit;4.12
Module descriptor is processed : commons-collections#commons-collections;3.2.2
Non matching revision detected when sorting. org.apache.zookeeper#zookeeper depends on commons-lang#commons-lang;2.4, doesn’t match commons-lang#commons-lang;2.6
Module descriptor is processed : commons-collections#commons-collections;3.2.2
Sort done for : org.apache.zookeeper#zookeeper;3.4.8
Non matching revision detected when sorting. org.apache.curator#curator-client depends on com.google.guava#guava;16.0.1, doesn’t match com.google.guava#guava;18.0
Non matching revision detected when sorting. org.apache.curator#curator-client depends on org.slf4j#slf4j-api;1.7.6, doesn’t match org.slf4j#slf4j-api;1.7.25
Non matching revision detected when sorting. org.apache.curator#curator-client depends on org.mockito#mockito-core;1.9.5, doesn’t match org.mockito#mockito-core;1.10.19
Sort done for : org.apache.curator#curator-client;2.11.1
Sort done for : org.apache.curator#curator-framework;2.11.1
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Module descriptor is processed : org.objenesis#objenesis;2.1
Module descriptor is processed : org.hamcrest#hamcrest-core;1.3
Sort done for : org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE / Number of dependencies = 26
Module descriptor is processed : org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Module descriptor is processed : org.springframework#spring-web;4.3.18.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Sort dependencies of : org.apache.curator#curator-x-discovery;2.11.1 / Number of dependencies = 5
Sort dependencies of : org.apache.curator#curator-recipes;2.11.1 / Number of dependencies = 5
Module descriptor is processed : org.apache.curator#curator-framework;2.11.1
Non matching revision detected when sorting. org.apache.curator#curator-recipes depends on org.mockito#mockito-core;1.9.5, doesn’t match org.mockito#mockito-core;1.10.19
Sort done for : org.apache.curator#curator-recipes;2.11.1
Module descriptor is processed : org.codehaus.jackson#jackson-mapper-asl;1.9.13
Sort done for : org.apache.curator#curator-x-discovery;2.11.1
Module descriptor is processed : org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE
Module descriptor is processed : com.netflix.ribbon#ribbon;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-core;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-loadbalancer;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-httpclient;2.2.5
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Module descriptor is processed : org.objenesis#objenesis;2.1
Module descriptor is processed : org.hamcrest#hamcrest-core;1.3
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-zookeeper-discovery depends on org.assertj#assertj-core;2.4.0, doesn’t match org.assertj#assertj-core;2.6.0
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-zookeeper-discovery depends on com.toomuchcoding.jsonassert#jsonassert;0.4.1, doesn’t match com.toomuchcoding.jsonassert#jsonassert;0.4.12
Sort done for : org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE
Module descriptor is processed : org.apache.curator#curator-x-discovery;2.11.1
Module descriptor is processed : org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE
Module descriptor is processed : com.netflix.ribbon#ribbon;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-core;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-httpclient;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-loadbalancer;2.2.5
Sort done for : org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE / Number of dependencies = 8
Module descriptor is processed : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Sort dependencies of : org.cloudfoundry#cloudfoundry-client-lib;1.1.3 / Number of dependencies = 19
Non matching revision detected when sorting. org.cloudfoundry#cloudfoundry-client-lib depends on org.springframework#spring-webmvc;4.0.5.RELEASE, doesn’t match org.springframework#spring-webmvc;4.3.18.RELEASE
Non matching revision detected when sorting. org.cloudfoundry#cloudfoundry-client-lib depends on org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE, doesn’t match org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE
Non matching revision detected when sorting. org.cloudfoundry#cloudfoundry-client-lib depends on org.apache.httpcomponents#httpclient;4.3.6, doesn’t match org.apache.httpcomponents#httpclient;4.5.5
Sort dependencies of : commons-io#commons-io;2.1 / Number of dependencies = 1
Non matching revision detected when sorting. commons-io#commons-io depends on junit#junit;4.10, doesn’t match junit#junit;4.12
Sort done for : commons-io#commons-io;2.1
Sort dependencies of : com.esotericsoftware.yamlbeans#yamlbeans;1.06 / Number of dependencies = 1
Non matching revision detected when sorting. com.esotericsoftware.yamlbeans#yamlbeans depends on junit#junit;4.8.2, doesn’t match junit#junit;4.12
Sort done for : com.esotericsoftware.yamlbeans#yamlbeans;1.06
Non matching revision detected when sorting. org.cloudfoundry#cloudfoundry-client-lib depends on com.fasterxml.jackson.core#jackson-core;2.3.3, doesn’t match com.fasterxml.jackson.core#jackson-core;2.8.11
Non matching revision detected when sorting. org.cloudfoundry#cloudfoundry-client-lib depends on com.fasterxml.jackson.core#jackson-databind;2.3.3, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Non matching revision detected when sorting. org.cloudfoundry#cloudfoundry-client-lib depends on org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15, doesn’t match org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31
Sort dependencies of : org.apache.tomcat#tomcat-juli;8.0.15 / Number of dependencies = 0
Sort done for : org.apache.tomcat#tomcat-juli;8.0.15
Module descriptor is processed : com.google.protobuf#protobuf-java;2.6.1
Non matching revision detected when sorting. org.cloudfoundry#cloudfoundry-client-lib depends on junit#junit;4.10, doesn’t match junit#junit;4.12
Non matching revision detected when sorting. org.cloudfoundry#cloudfoundry-client-lib depends on org.mockito#mockito-core;1.9.5, doesn’t match org.mockito#mockito-core;1.10.19
Non matching revision detected when sorting. org.cloudfoundry#cloudfoundry-client-lib depends on org.springframework#spring-test;4.0.5.RELEASE, doesn’t match org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.cloudfoundry#cloudfoundry-client-lib;1.1.3
Module descriptor is processed : org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE / Number of dependencies = 3
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE
Sort dependencies of : org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE / Number of dependencies = 10
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE / Number of dependencies = 1
Module descriptor is processed : org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE / Number of dependencies = 1
Module descriptor is processed : org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE / Number of dependencies = 2
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-localconfig-connector depends on org.apache.commons#commons-lang3;3.3.2, doesn’t match org.apache.commons#commons-lang3;3.5
Module descriptor is processed : org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE / Number of dependencies = 3
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE / Number of dependencies = 31
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Module descriptor is processed : org.springframework.integration#spring-integration-core;4.3.17.RELEASE
Module descriptor is processed : org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : com.netflix.hystrix#hystrix-core;1.5.12
Module descriptor is processed : io.reactivex#rxjava;1.2.0
Module descriptor is processed : org.apache.httpcomponents#httpclient;4.5.5
Module descriptor is processed : org.aspectj#aspectjrt;1.8.13
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Module descriptor is processed : com.netflix.archaius#archaius-core;0.7.4
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-sleuth-core depends on org.assertj#assertj-core;3.8.0, doesn’t match org.assertj#assertj-core;2.6.0
Sort done for : org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE / Number of dependencies = 2
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE / Number of dependencies = 4
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE / Number of dependencies = 8
Module descriptor is processed : org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Module descriptor is processed : org.apache.curator#curator-recipes;2.11.1
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
Module descriptor is processed : org.apache.curator#curator-recipes;2.11.1
Sort done for : org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE / Number of dependencies = 4
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE / Number of dependencies = 4
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE / Number of dependencies = 10
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE / Number of dependencies = 12
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream depends on org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE, doesn’t match org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream depends on org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE, doesn’t match org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream depends on org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE, doesn’t match org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream depends on org.springframework#spring-messaging;4.3.16.RELEASE, doesn’t match org.springframework#spring-messaging;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream depends on org.springframework.integration#spring-integration-core;4.3.15.RELEASE, doesn’t match org.springframework.integration#spring-integration-core;4.3.17.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream depends on org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE, doesn’t match org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE
Sort dependencies of : org.springframework#spring-tuple;1.0.0.RELEASE / Number of dependencies = 7
Module descriptor is processed : com.esotericsoftware#kryo-shaded;3.0.3
Non matching revision detected when sorting. org.springframework#spring-tuple depends on org.springframework#spring-core;4.2.6.RELEASE, doesn’t match org.springframework#spring-core;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework#spring-tuple depends on com.fasterxml.jackson.core#jackson-databind;2.6.6, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Non matching revision detected when sorting. org.springframework#spring-tuple depends on org.springframework#spring-context;4.2.6.RELEASE, doesn’t match org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : org.hamcrest#hamcrest-core;1.3
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : junit#junit;4.12
Sort done for : org.springframework#spring-tuple;1.0.0.RELEASE
Sort dependencies of : org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE / Number of dependencies = 5
Module descriptor is processed : org.springframework#spring-tuple;1.0.0.RELEASE
Non matching revision detected when sorting. org.springframework.integration#spring-integration-tuple depends on org.springframework.integration#spring-integration-core;4.2.5.RELEASE, doesn’t match org.springframework.integration#spring-integration-core;4.3.17.RELEASE
Module descriptor is processed : org.hamcrest#hamcrest-core;1.3
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : junit#junit;4.12
Sort done for : org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE
Module descriptor is processed : org.springframework.retry#spring-retry;1.2.2.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream depends on org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE, doesn’t match org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE
Module descriptor is processed : com.ecwid.consul#consul-api;1.3.0
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE / Number of dependencies = 9
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE
Module descriptor is processed : org.springframework.integration#spring-integration-core;4.3.17.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE / Number of dependencies = 4
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE / Number of dependencies = 13
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Module descriptor is processed : org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE / Number of dependencies = 8
Sort dependencies of : org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE / Number of dependencies = 18
Sort dependencies of : org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE / Number of dependencies = 14
Module descriptor is processed : org.springframework#spring-beans;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-aop;4.3.18.RELEASE
Sort dependencies of : com.amazonaws#aws-java-sdk-core;1.11.125 / Number of dependencies = 15
Non matching revision detected when sorting. com.amazonaws#aws-java-sdk-core depends on commons-logging#commons-logging;1.1.3, doesn’t match commons-logging#commons-logging;1.2
Non matching revision detected when sorting. com.amazonaws#aws-java-sdk-core depends on org.apache.httpcomponents#httpclient;4.5.2, doesn’t match org.apache.httpcomponents#httpclient;4.5.5
Sort dependencies of : software.amazon.ion#ion-java;1.0.2 / Number of dependencies = 1
Module descriptor is processed : junit#junit;4.12
Sort done for : software.amazon.ion#ion-java;1.0.2
Non matching revision detected when sorting. com.amazonaws#aws-java-sdk-core depends on com.fasterxml.jackson.core#jackson-databind;2.6.6, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Non matching revision detected when sorting. com.amazonaws#aws-java-sdk-core depends on com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6, doesn’t match com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11
Non matching revision detected when sorting. com.amazonaws#aws-java-sdk-core depends on joda-time#joda-time;2.8.1, doesn’t match joda-time#joda-time;2.9.9
Non matching revision detected when sorting. com.amazonaws#aws-java-sdk-core depends on joda-time#joda-time;2.8.1, doesn’t match joda-time#joda-time;2.7
Module descriptor is processed : junit#junit;4.12
Non matching revision detected when sorting. com.amazonaws#aws-java-sdk-core depends on commons-io#commons-io;2.4, doesn’t match commons-io#commons-io;2.1
Sort done for : com.amazonaws#aws-java-sdk-core;1.11.125
Sort dependencies of : com.amazonaws#aws-java-sdk-s3;1.11.125 / Number of dependencies = 4
Sort dependencies of : com.amazonaws#aws-java-sdk-kms;1.11.125 / Number of dependencies = 3
Module descriptor is processed : com.amazonaws#aws-java-sdk-core;1.11.125
Sort dependencies of : com.amazonaws#jmespath-java;1.11.125 / Number of dependencies = 2
Non matching revision detected when sorting. com.amazonaws#jmespath-java depends on com.fasterxml.jackson.core#jackson-databind;2.6.6, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : junit#junit;4.12
Sort done for : com.amazonaws#jmespath-java;1.11.125
Sort done for : com.amazonaws#aws-java-sdk-kms;1.11.125
Module descriptor is processed : com.amazonaws#aws-java-sdk-core;1.11.125
Module descriptor is processed : com.amazonaws#jmespath-java;1.11.125
Sort done for : com.amazonaws#aws-java-sdk-s3;1.11.125
Sort dependencies of : com.amazonaws#aws-java-sdk-ec2;1.11.125 / Number of dependencies = 3
Module descriptor is processed : com.amazonaws#aws-java-sdk-core;1.11.125
Module descriptor is processed : com.amazonaws#jmespath-java;1.11.125
Sort done for : com.amazonaws#aws-java-sdk-ec2;1.11.125
Sort dependencies of : com.amazonaws#aws-java-sdk-cloudformation;1.11.125 / Number of dependencies = 3
Module descriptor is processed : com.amazonaws#aws-java-sdk-core;1.11.125
Module descriptor is processed : com.amazonaws#jmespath-java;1.11.125
Sort done for : com.amazonaws#aws-java-sdk-cloudformation;1.11.125
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-context-support;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Module descriptor is processed : org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE / Number of dependencies = 21
Module descriptor is processed : org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : org.springframework#spring-context-support;4.3.18.RELEASE
Module descriptor is processed : org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE
Module descriptor is processed : org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE / Number of dependencies = 10
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE / Number of dependencies = 23
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-netflix-eureka-client depends on org.springframework.cloud#spring-cloud-config-client;1.4.4.BUILD-SNAPSHOT, doesn’t match org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-netflix-eureka-client depends on org.springframework.cloud#spring-cloud-config-server;1.4.4.BUILD-SNAPSHOT, doesn’t match org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE
Sort dependencies of : com.netflix.eureka#eureka-client;1.7.2 / Number of dependencies = 22
Sort dependencies of : org.codehaus.jettison#jettison;1.3.7 / Number of dependencies = 3
Non matching revision detected when sorting. org.codehaus.jettison#jettison depends on junit#junit;3.8.1, doesn’t match junit#junit;4.12
Module descriptor is processed : stax#stax-api;1.0.1
Sort done for : org.codehaus.jettison#jettison;1.3.7
Sort dependencies of : com.netflix.netflix-commons#netflix-eventbus;0.3.0 / Number of dependencies = 5
Non matching revision detected when sorting. com.netflix.netflix-commons#netflix-eventbus depends on org.slf4j#slf4j-api;1.6.4, doesn’t match org.slf4j#slf4j-api;1.7.25
Sort dependencies of : com.netflix.netflix-commons#netflix-infix;0.3.0 / Number of dependencies = 8
Non matching revision detected when sorting. com.netflix.netflix-commons#netflix-infix depends on org.slf4j#slf4j-api;1.6.4, doesn’t match org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : commons-jxpath#commons-jxpath;1.3
Non matching revision detected when sorting. com.netflix.netflix-commons#netflix-infix depends on joda-time#joda-time;2.3, doesn’t match joda-time#joda-time;2.9.9
Non matching revision detected when sorting. com.netflix.netflix-commons#netflix-infix depends on joda-time#joda-time;2.3, doesn’t match joda-time#joda-time;2.7
Sort dependencies of : org.antlr#antlr-runtime;3.4 / Number of dependencies = 2
Sort dependencies of : org.antlr#stringtemplate;3.2.1 / Number of dependencies = 2
Non matching revision detected when sorting. org.antlr#stringtemplate depends on junit#junit;4.5, doesn’t match junit#junit;4.12
Sort dependencies of : antlr#antlr;2.7.7 / Number of dependencies = 0
Sort done for : antlr#antlr;2.7.7
Sort done for : org.antlr#stringtemplate;3.2.1
Module descriptor is processed : antlr#antlr;2.7.7
Sort done for : org.antlr#antlr-runtime;3.4
Module descriptor is processed : com.google.code.findbugs#jsr305;3.0.1
Non matching revision detected when sorting. com.netflix.netflix-commons#netflix-infix depends on com.google.guava#guava;14.0.1, doesn’t match com.google.guava#guava;18.0
Non matching revision detected when sorting. com.netflix.netflix-commons#netflix-infix depends on com.google.code.gson#gson;2.1, doesn’t match com.google.code.gson#gson;2.8.5
Non matching revision detected when sorting. com.netflix.netflix-commons#netflix-infix depends on com.google.code.gson#gson;2.1, doesn’t match com.google.code.gson#gson;2.3.1
Sort done for : com.netflix.netflix-commons#netflix-infix;0.3.0
Non matching revision detected when sorting. com.netflix.netflix-commons#netflix-eventbus depends on com.netflix.servo#servo-core;0.5.3, doesn’t match com.netflix.servo#servo-core;0.10.1
Non matching revision detected when sorting. com.netflix.netflix-commons#netflix-eventbus depends on com.netflix.archaius#archaius-core;0.3.3, doesn’t match com.netflix.archaius#archaius-core;0.7.4
Sort dependencies of : org.apache.commons#commons-math;2.2 / Number of dependencies = 1
Non matching revision detected when sorting. org.apache.commons#commons-math depends on junit#junit;4.4, doesn’t match junit#junit;4.12
Sort done for : org.apache.commons#commons-math;2.2
Sort done for : com.netflix.netflix-commons#netflix-eventbus;0.3.0
Non matching revision detected when sorting. com.netflix.eureka#eureka-client depends on com.thoughtworks.xstream#xstream;1.4.9, doesn’t match com.thoughtworks.xstream#xstream;1.4.10
Non matching revision detected when sorting. com.netflix.eureka#eureka-client depends on com.netflix.archaius#archaius-core;0.7.5, doesn’t match com.netflix.archaius#archaius-core;0.7.4
Module descriptor is processed : javax.ws.rs#jsr311-api;1.1.1
Module descriptor is processed : com.netflix.servo#servo-core;0.10.1
Sort dependencies of : com.sun.jersey#jersey-core;1.19.1 / Number of dependencies = 5
Module descriptor is processed : javax.ws.rs#jsr311-api;1.1.1
Non matching revision detected when sorting. com.sun.jersey#jersey-core depends on junit#junit;4.8.2, doesn’t match junit#junit;4.12
Sort done for : com.sun.jersey#jersey-core;1.19.1
Module descriptor is processed : com.sun.jersey#jersey-client;1.19.1
Module descriptor is processed : com.sun.jersey.contribs#jersey-apache-client4;1.19.1
Non matching revision detected when sorting. com.netflix.eureka#eureka-client depends on org.apache.httpcomponents#httpclient;4.3.4, doesn’t match org.apache.httpcomponents#httpclient;4.5.5
Sort dependencies of : com.google.inject#guice;4.1.0 / Number of dependencies = 11
Module descriptor is processed : javax.inject#javax.inject;1
Module descriptor is processed : aopalliance#aopalliance;1.0
Non matching revision detected when sorting. com.google.inject#guice depends on com.google.guava#guava;19.0, doesn’t match com.google.guava#guava;18.0
Module descriptor is processed : org.ow2.asm#asm;5.0.3
Non matching revision detected when sorting. com.google.inject#guice depends on org.springframework#spring-beans;3.0.5.RELEASE, doesn’t match org.springframework#spring-beans;4.3.18.RELEASE
Non matching revision detected when sorting. com.google.inject#guice depends on junit#junit;4.11, doesn’t match junit#junit;4.12
Sort done for : com.google.inject#guice;4.1.0
Non matching revision detected when sorting. com.netflix.eureka#eureka-client depends on com.fasterxml.jackson.core#jackson-annotations;2.8.7, doesn’t match com.fasterxml.jackson.core#jackson-annotations;2.8.0
Non matching revision detected when sorting. com.netflix.eureka#eureka-client depends on com.fasterxml.jackson.core#jackson-core;2.8.7, doesn’t match com.fasterxml.jackson.core#jackson-core;2.8.11
Non matching revision detected when sorting. com.netflix.eureka#eureka-client depends on com.fasterxml.jackson.core#jackson-databind;2.8.7, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Non matching revision detected when sorting. com.netflix.eureka#eureka-client depends on com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7, doesn’t match com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11
Sort dependencies of : org.codehaus.woodstox#woodstox-core-asl;4.4.1 / Number of dependencies = 2
Module descriptor is processed : javax.xml.stream#stax-api;1.0-2
Module descriptor is processed : org.codehaus.woodstox#stax2-api;3.1.4
Sort done for : org.codehaus.woodstox#woodstox-core-asl;4.4.1
Non matching revision detected when sorting. com.netflix.eureka#eureka-client depends on junit#junit;4.11, doesn’t match junit#junit;4.12
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Sort done for : com.netflix.eureka#eureka-client;1.7.2
Module descriptor is processed : javax.inject#javax.inject;1
Sort dependencies of : com.netflix.eureka#eureka-core;1.7.2 / Number of dependencies = 11
Module descriptor is processed : com.netflix.eureka#eureka-client;1.7.2
Non matching revision detected when sorting. com.netflix.eureka#eureka-core depends on com.amazonaws#aws-java-sdk-core;1.11.105, doesn’t match com.amazonaws#aws-java-sdk-core;1.11.125
Non matching revision detected when sorting. com.netflix.eureka#eureka-core depends on com.amazonaws#aws-java-sdk-ec2;1.11.105, doesn’t match com.amazonaws#aws-java-sdk-ec2;1.11.125
Non matching revision detected when sorting. com.netflix.eureka#eureka-core depends on com.thoughtworks.xstream#xstream;1.4.9, doesn’t match com.thoughtworks.xstream#xstream;1.4.10
Module descriptor is processed : javax.ws.rs#jsr311-api;1.1.1
Non matching revision detected when sorting. com.netflix.eureka#eureka-core depends on com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7, doesn’t match com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11
Module descriptor is processed : org.codehaus.woodstox#woodstox-core-asl;4.4.1
Sort done for : com.netflix.eureka#eureka-core;1.7.2
Module descriptor is processed : com.thoughtworks.xstream#xstream;1.4.10
Module descriptor is processed : com.sun.jersey.contribs#jersey-apache-client4;1.19.1
Module descriptor is processed : com.netflix.archaius#archaius-core;0.7.4
Module descriptor is processed : commons-configuration#commons-configuration;1.8
Module descriptor is processed : com.netflix.ribbon#ribbon;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-core;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-loadbalancer;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-eureka;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-httpclient;2.2.5
Module descriptor is processed : org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Module descriptor is processed : org.springframework.retry#spring-retry;1.2.2.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE
Module descriptor is processed : com.netflix.eureka#eureka-client;1.7.2
Module descriptor is processed : com.netflix.eureka#eureka-core;1.7.2
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE
Module descriptor is processed : com.netflix.ribbon#ribbon-eureka;2.2.5
Module descriptor is processed : com.thoughtworks.xstream#xstream;1.4.10
Sort done for : org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE / Number of dependencies = 5
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE / Number of dependencies = 22
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Sort dependencies of : org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE / Number of dependencies = 9
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.freemarker#freemarker;2.3.28
Module descriptor is processed : org.springframework#spring-context-support;4.3.18.RELEASE
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE
Module descriptor is processed : com.netflix.eureka#eureka-client;1.7.2
Sort dependencies of : com.sun.jersey#jersey-servlet;1.19.1 / Number of dependencies = 9
Non matching revision detected when sorting. com.sun.jersey#jersey-servlet depends on junit#junit;4.8.2, doesn’t match junit#junit;4.12
Sort done for : com.sun.jersey#jersey-servlet;1.19.1
Sort dependencies of : com.sun.jersey#jersey-server;1.19.1 / Number of dependencies = 6
Non matching revision detected when sorting. com.sun.jersey#jersey-server depends on junit#junit;4.8.2, doesn’t match junit#junit;4.12
Sort done for : com.sun.jersey#jersey-server;1.19.1
Module descriptor is processed : com.netflix.eureka#eureka-core;1.7.2
Module descriptor is processed : com.netflix.archaius#archaius-core;0.7.4
Module descriptor is processed : commons-configuration#commons-configuration;1.8
Module descriptor is processed : javax.inject#javax.inject;1
Module descriptor is processed : com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11
Module descriptor is processed : com.thoughtworks.xstream#xstream;1.4.10
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE
Module descriptor is processed : com.netflix.ribbon#ribbon-eureka;2.2.5
Sort done for : org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE / Number of dependencies = 4
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE
Module descriptor is processed : com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Sort done for : org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE / Number of dependencies = 2
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE / Number of dependencies = 1
Sort dependencies of : org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE / Number of dependencies = 12
Sort dependencies of : org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE / Number of dependencies = 3
Module descriptor is processed : org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream-binder-rabbit-core depends on org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE, doesn’t match org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream-binder-rabbit-core depends on org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE, doesn’t match org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE / Number of dependencies = 5
Module descriptor is processed : com.esotericsoftware#kryo-shaded;3.0.3
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream-codec depends on org.springframework.integration#spring-integration-core;4.3.15.RELEASE, doesn’t match org.springframework.integration#spring-integration-core;4.3.17.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream-codec depends on org.springframework.boot#spring-boot-starter-logging;1.5.12.RELEASE, doesn’t match org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream-codec depends on org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE, doesn’t match org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : com.fasterxml.jackson.core#jackson-annotations;2.8.0
Sort done for : org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream-binder-rabbit depends on org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE, doesn’t match org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream-binder-rabbit depends on org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE, doesn’t match org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream-binder-rabbit depends on org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE, doesn’t match org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream-binder-rabbit depends on org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE, doesn’t match org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream-binder-rabbit depends on org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE, doesn’t match org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE
Sort dependencies of : org.codehaus.groovy#groovy-xml;2.5.0 / Number of dependencies = 1
Sort dependencies of : org.codehaus.groovy#groovy;2.5.0 / Number of dependencies = 6
Module descriptor is processed : com.thoughtworks.xstream#xstream;1.4.10
Sort done for : org.codehaus.groovy#groovy;2.5.0
Sort done for : org.codehaus.groovy#groovy-xml;2.5.0
Sort dependencies of : org.codehaus.groovy#groovy-nio;2.5.0 / Number of dependencies = 1
Module descriptor is processed : org.codehaus.groovy#groovy;2.5.0
Sort done for : org.codehaus.groovy#groovy-nio;2.5.0
Sort dependencies of : org.codehaus.groovy#groovy-json;2.5.0 / Number of dependencies = 1
Module descriptor is processed : org.codehaus.groovy#groovy;2.5.0
Sort done for : org.codehaus.groovy#groovy-json;2.5.0
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE
Module descriptor is processed : org.hibernate#hibernate-validator;5.3.6.Final
Module descriptor is processed : com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : org.springframework#spring-web;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-webmvc;4.3.18.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-aop;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-beans;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-expression;4.3.18.RELEASE
Module descriptor is processed : ch.qos.logback#logback-classic;1.1.11
Module descriptor is processed : org.slf4j#jcl-over-slf4j;1.7.25
Module descriptor is processed : org.slf4j#jul-to-slf4j;1.7.25
Module descriptor is processed : org.slf4j#log4j-over-slf4j;1.7.25
Module descriptor is processed : ch.qos.logback#logback-core;1.1.11
Module descriptor is processed : org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : org.apache.tomcat.embed#tomcat-embed-core;8.5.31
Module descriptor is processed : org.apache.tomcat.embed#tomcat-embed-el;8.5.31
Module descriptor is processed : org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31
Module descriptor is processed : org.apache.tomcat#tomcat-annotations-api;8.5.31
Module descriptor is processed : javax.validation#validation-api;1.1.0.Final
Sort dependencies of : org.jboss.logging#jboss-logging;3.3.2.Final / Number of dependencies = 4
Non matching revision detected when sorting. org.jboss.logging#jboss-logging depends on org.slf4j#slf4j-api;1.7.2, doesn’t match org.slf4j#slf4j-api;1.7.25
Sort done for : org.jboss.logging#jboss-logging;3.3.2.Final
Sort dependencies of : com.fasterxml#classmate;1.3.4 / Number of dependencies = 1
Module descriptor is processed : junit#junit;4.12
Sort done for : com.fasterxml#classmate;1.3.4
Module descriptor is processed : com.fasterxml.jackson.core#jackson-annotations;2.8.0
Module descriptor is processed : com.fasterxml.jackson.core#jackson-core;2.8.11
Module descriptor is processed : org.yaml#snakeyaml;1.17
Module descriptor is processed : commons-logging#commons-logging;1.2
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
Module descriptor is processed : org.springframework.vault#spring-vault-core;1.1.2.RELEASE
Module descriptor is processed : org.springframework.security#spring-security-crypto;4.2.7.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : javax.inject#javax.inject;1
Module descriptor is processed : com.github.tomakehurst#wiremock-standalone;2.16.0
Module descriptor is processed : com.toomuchcoding.jsonassert#jsonassert;0.4.12
Module descriptor is processed : org.codehaus.groovy#groovy;2.4.15
Module descriptor is processed : org.skyscreamer#jsonassert;1.4.0
Module descriptor is processed : com.github.jknack#handlebars;4.0.6
Module descriptor is processed : commons-beanutils#commons-beanutils;1.9.3
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Module descriptor is processed : dk.brics.automaton#automaton;1.11-8
Module descriptor is processed : org.apache.commons#commons-text;1.1
Module descriptor is processed : org.apache.commons#commons-lang3;3.5
Module descriptor is processed : org.springframework.boot#spring-boot-test;1.5.14.RELEASE
Module descriptor is processed : com.jayway.jsonpath#json-path;2.2.0
Module descriptor is processed : net.minidev#json-smart;2.2.1
Module descriptor is processed : net.minidev#accessors-smart;1.1
Module descriptor is processed : org.ow2.asm#asm;5.0.3
Module descriptor is processed : com.vaadin.external.google#android-json;0.0.20131108.vaadin1
Module descriptor is processed : org.antlr#antlr4-runtime;4.5.1-1
Module descriptor is processed : org.mozilla#rhino;1.7R4
Module descriptor is processed : commons-collections#commons-collections;3.2.2
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-core;1.3
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Module descriptor is processed : org.objenesis#objenesis;2.1
Module descriptor is processed : org.cloudfoundry#cloudfoundry-client-lib;1.1.3
Module descriptor is processed : org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE
Module descriptor is processed : org.apache.httpcomponents#httpclient;4.5.5
Module descriptor is processed : commons-io#commons-io;2.1
Module descriptor is processed : com.esotericsoftware.yamlbeans#yamlbeans;1.06
Module descriptor is processed : org.apache.tomcat#tomcat-juli;8.0.15
Module descriptor is processed : com.google.protobuf#protobuf-java;2.6.1
Module descriptor is processed : org.springframework.security#spring-security-core;4.2.7.RELEASE
Module descriptor is processed : org.springframework.security#spring-security-config;4.2.7.RELEASE
Module descriptor is processed : org.springframework.security#spring-security-web;4.2.7.RELEASE
Module descriptor is processed : commons-codec#commons-codec;1.10
Module descriptor is processed : org.codehaus.jackson#jackson-mapper-asl;1.9.13
Module descriptor is processed : aopalliance#aopalliance;1.0
Module descriptor is processed : org.codehaus.jackson#jackson-core-asl;1.9.13
Module descriptor is processed : org.apache.httpcomponents#httpcore;4.4.9
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE
Module descriptor is processed : org.springframework.security#spring-security-rsa;1.0.3.RELEASE
Module descriptor is processed : org.bouncycastle#bcpkix-jdk15on;1.55
Module descriptor is processed : org.bouncycastle#bcprov-jdk15on;1.55
Module descriptor is processed : org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE
Module descriptor is processed : org.aspectj#aspectjweaver;1.8.13
Module descriptor is processed : org.aspectj#aspectjrt;1.8.13
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE
Module descriptor is processed : org.apache.curator#curator-recipes;2.11.1
Module descriptor is processed : org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE
Module descriptor is processed : org.apache.curator#curator-framework;2.11.1
Module descriptor is processed : org.apache.curator#curator-client;2.11.1
Module descriptor is processed : org.apache.zookeeper#zookeeper;3.4.8
Module descriptor is processed : com.google.guava#guava;18.0
Module descriptor is processed : jline#jline;0.9.94
Module descriptor is processed : org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE
Module descriptor is processed : org.apache.curator#curator-x-discovery;2.11.1
Module descriptor is processed : org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE
Module descriptor is processed : com.netflix.ribbon#ribbon;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-core;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-httpclient;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-loadbalancer;2.2.5
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE
Module descriptor is processed : com.netflix.archaius#archaius-core;0.7.4
Module descriptor is processed : commons-configuration#commons-configuration;1.8
Module descriptor is processed : commons-lang#commons-lang;2.6
Module descriptor is processed : com.google.code.findbugs#jsr305;3.0.1
Module descriptor is processed : com.netflix.ribbon#ribbon-transport;2.2.5
Module descriptor is processed : com.netflix.hystrix#hystrix-core;1.5.12
Module descriptor is processed : io.reactivex#rxjava;1.2.0
Module descriptor is processed : io.reactivex#rxnetty;0.4.9
Module descriptor is processed : com.google.code.findbugs#annotations;2.0.0
Module descriptor is processed : io.reactivex#rxnetty-contexts;0.4.9
Module descriptor is processed : io.reactivex#rxnetty-servo;0.4.9
Module descriptor is processed : com.netflix.netflix-commons#netflix-statistics;0.1.1
Module descriptor is processed : com.netflix.servo#servo-core;0.10.1
Module descriptor is processed : com.netflix.netflix-commons#netflix-commons-util;0.1.1
Module descriptor is processed : com.netflix.servo#servo-internal;0.10.1
Module descriptor is processed : io.netty#netty-codec-http;4.0.27.Final
Module descriptor is processed : io.netty#netty-transport-native-epoll;4.0.27.Final
Module descriptor is processed : io.netty#netty-codec;4.0.27.Final
Module descriptor is processed : io.netty#netty-handler;4.0.27.Final
Module descriptor is processed : io.netty#netty-transport;4.0.27.Final
Module descriptor is processed : io.netty#netty-buffer;4.0.27.Final
Module descriptor is processed : io.netty#netty-common;4.0.27.Final
Module descriptor is processed : org.hdrhistogram#HdrHistogram;2.1.9
Module descriptor is processed : com.sun.jersey#jersey-client;1.19.1
Module descriptor is processed : com.sun.jersey.contribs#jersey-apache-client4;1.19.1
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE
Module descriptor is processed : com.ecwid.consul#consul-api;1.3.0
Module descriptor is processed : com.google.code.gson#gson;2.3.1
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Sort dependencies of : org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE / Number of dependencies = 8
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Module descriptor is processed : org.apache.tomcat.embed#tomcat-embed-el;8.5.31
Module descriptor is processed : org.hibernate#hibernate-validator;5.3.6.Final
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE
Module descriptor is processed : org.springframework#spring-messaging;4.3.18.RELEASE
Module descriptor is processed : org.springframework.integration#spring-integration-core;4.3.17.RELEASE
Module descriptor is processed : org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE
Module descriptor is processed : org.springframework#spring-tuple;1.0.0.RELEASE
Module descriptor is processed : org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE
Module descriptor is processed : org.springframework.retry#spring-retry;1.2.2.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE
Module descriptor is processed : org.springframework#spring-tx;4.3.18.RELEASE
Module descriptor is processed : com.esotericsoftware#kryo-shaded;3.0.3
Module descriptor is processed : com.esotericsoftware#minlog;1.3.0
Module descriptor is processed : org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE
Module descriptor is processed : joda-time#joda-time;2.7
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE
Module descriptor is processed : com.amazonaws#aws-java-sdk-core;1.11.125
Module descriptor is processed : com.amazonaws#aws-java-sdk-s3;1.11.125
Module descriptor is processed : com.amazonaws#aws-java-sdk-ec2;1.11.125
Module descriptor is processed : com.amazonaws#aws-java-sdk-cloudformation;1.11.125
Module descriptor is processed : software.amazon.ion#ion-java;1.0.2
Sort dependencies of : com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 / Number of dependencies = 4
Non matching revision detected when sorting. com.fasterxml.jackson.dataformat#jackson-dataformat-cbor depends on com.fasterxml.jackson.core#jackson-databind;2.8.11, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : com.fasterxml.jackson.core#jackson-annotations;2.8.0
Module descriptor is processed : com.fasterxml.jackson.core#jackson-core;2.8.11
Module descriptor is processed : junit#junit;4.12
Sort done for : com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11
Module descriptor is processed : joda-time#joda-time;2.9.9
Module descriptor is processed : com.amazonaws#aws-java-sdk-kms;1.11.125
Module descriptor is processed : com.amazonaws#jmespath-java;1.11.125
Module descriptor is processed : org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE
Module descriptor is processed : com.netflix.eureka#eureka-client;1.7.2
Module descriptor is processed : com.netflix.eureka#eureka-core;1.7.2
Module descriptor is processed : com.netflix.ribbon#ribbon-eureka;2.2.5
Module descriptor is processed : com.thoughtworks.xstream#xstream;1.4.10
Module descriptor is processed : org.codehaus.jettison#jettison;1.3.7
Module descriptor is processed : com.netflix.netflix-commons#netflix-eventbus;0.3.0
Module descriptor is processed : javax.ws.rs#jsr311-api;1.1.1
Module descriptor is processed : com.sun.jersey#jersey-core;1.19.1
Module descriptor is processed : com.google.inject#guice;4.1.0
Module descriptor is processed : stax#stax-api;1.0.1
Module descriptor is processed : com.netflix.netflix-commons#netflix-infix;0.3.0
Module descriptor is processed : org.apache.commons#commons-math;2.2
Module descriptor is processed : commons-jxpath#commons-jxpath;1.3
Module descriptor is processed : org.antlr#antlr-runtime;3.4
Module descriptor is processed : com.google.code.gson#gson;2.8.5
Module descriptor is processed : org.antlr#stringtemplate;3.2.1
Module descriptor is processed : antlr#antlr;2.7.7
Module descriptor is processed : xmlpull#xmlpull;1.1.3.1
Module descriptor is processed : xpp3#xpp3_min;1.1.4c
Module descriptor is processed : org.codehaus.woodstox#woodstox-core-asl;4.4.1
Module descriptor is processed : javax.xml.stream#stax-api;1.0-2
Module descriptor is processed : org.codehaus.woodstox#stax2-api;3.1.4
Module descriptor is processed : org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE
Module descriptor is processed : com.sun.jersey#jersey-servlet;1.19.1
Module descriptor is processed : com.sun.jersey#jersey-server;1.19.1
Module descriptor is processed : com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11
Module descriptor is processed : org.freemarker#freemarker;2.3.28
Module descriptor is processed : org.springframework#spring-context-support;4.3.18.RELEASE
Module descriptor is processed : com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11
Module descriptor is processed : com.fasterxml.woodstox#woodstox-core;5.0.3
Module descriptor is processed : org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE
Module descriptor is processed : org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r
Sort dependencies of : com.jcraft#jsch;0.1.54 / Number of dependencies = 1
Sort done for : com.jcraft#jsch;0.1.54
Module descriptor is processed : com.googlecode.javaewah#JavaEWAH;0.7.9
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE
Sort dependencies of : org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE / Number of dependencies = 2
Module descriptor is processed : org.springframework.integration#spring-integration-core;4.3.17.RELEASE
Non matching revision detected when sorting. org.springframework.integration#spring-integration-amqp depends on org.springframework.amqp#spring-rabbit;1.6.11.RELEASE, doesn’t match org.springframework.amqp#spring-rabbit;1.7.8.RELEASE
Sort done for : org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE
Module descriptor is processed : org.springframework.amqp#spring-rabbit;1.7.8.RELEASE
Module descriptor is processed : org.springframework.amqp#spring-amqp;1.7.8.RELEASE
Module descriptor is processed : com.rabbitmq#http-client;1.1.1.RELEASE
Module descriptor is processed : com.rabbitmq#amqp-client;4.0.3
Module descriptor is processed : org.codehaus.groovy#groovy;2.5.0
jline#jline;0.9.94 in default: excluding jline#jline;0.9.94!jline.jar
storing dependency org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE in props
storing dependency org.codehaus.groovy#groovy-xml;2.5.0 in props
storing dependency org.codehaus.groovy#groovy-nio;2.5.0 in props
storing dependency org.codehaus.groovy#groovy-json;2.5.0 in props
resolved ivy file produced in cache
:: downloading artifacts ::
trying https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway-mvc/1.0.2.RELEASE/spring-cloud-gateway-mvc-1.0.2.RELEASE.jar
tried https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway-mvc/1.0.2.RELEASE/spring-cloud-gateway-mvc-1.0.2.RELEASE.jar
downloading https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway-mvc/1.0.2.RELEASE/spring-cloud-gateway-mvc-1.0.2.RELEASE.jar …
jcenter: downloading https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway-mvc/1.0.2.RELEASE/spring-cloud-gateway-mvc-1.0.2.RELEASE.jar
to /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway-mvc/jars/spring-cloud-gateway-mvc-1.0.2.RELEASE.jar.part
HTTP response status: 404 url=https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway-mvc/1.0.2.RELEASE/spring-cloud-gateway-mvc-1.0.2.RELEASE.jar.sha1
CLIENT ERROR: Not Found url=https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway-mvc/1.0.2.RELEASE/spring-cloud-gateway-mvc-1.0.2.RELEASE.jar.sha1
md5 file found for https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway-mvc/1.0.2.RELEASE/spring-cloud-gateway-mvc-1.0.2.RELEASE.jar: checking…
jcenter: downloading https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway-mvc/1.0.2.RELEASE/spring-cloud-gateway-mvc-1.0.2.RELEASE.jar.md5
to /var/folders/k3/zv8hzdm17vv69j485fv3cf9r0000gn/T/ivytmp6495845440168937908md5
md5 OK for https://jcenter.bintray.com/org/springframework/cloud/spring-cloud-gateway-mvc/1.0.2.RELEASE/spring-cloud-gateway-mvc-1.0.2.RELEASE.jar
[SUCCESSFUL ] org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE!spring-cloud-gateway-mvc.jar (1477ms)
[NOT REQUIRED] org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE!spring-cloud-vault-config-rabbitmq.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE!spring-cloud-vault-config-consul.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE!spring-cloud-vault-config-databases.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE!spring-cloud-vault-config-aws.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE!spring-cloud-vault-config.jar(test-jar)
[NOT REQUIRED] org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE!spring-cloud-vault-config.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE!spring-cloud-contract-stub-runner.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE!spring-cloud-cloudfoundry-discovery.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE!spring-cloud-starter-cloudfoundry.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE!spring-cloud-starter-sleuth.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE!spring-cloud-starter-zookeeper-all.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE!spring-cloud-starter-consul-all.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE!spring-cloud-starter-security.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE!spring-cloud-starter-aws.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE!spring-cloud-starter-netflix-eureka-client.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE!spring-cloud-starter-netflix-eureka-server.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE!spring-cloud-config-server.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE!spring-cloud-starter-config.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE!spring-cloud-starter-bus-amqp.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE!spring-cloud-stream.jar
[NOT REQUIRED] org.codehaus.groovy#groovy-xml;2.5.0!groovy-xml.jar
[NOT REQUIRED] org.codehaus.groovy#groovy-nio;2.5.0!groovy-nio.jar
[NOT REQUIRED] org.codehaus.groovy#groovy-json;2.5.0!groovy-json.jar
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE.jar
downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE.jar …
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE.jar
to /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-web/jars/spring-boot-starter-web-1.5.14.RELEASE.jar.part
sha1 file found for file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE.jar: checking…
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE.jar.sha1
to /var/folders/k3/zv8hzdm17vv69j485fv3cf9r0000gn/T/ivytmp2254442294557894283sha1
sha1 OK for file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-web/1.5.14.RELEASE/spring-boot-starter-web-1.5.14.RELEASE.jar
[SUCCESSFUL ] org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE!spring-boot-starter-web.jar (3ms)
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE.jar
downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE.jar …
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE.jar
to /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter/jars/spring-boot-starter-1.5.14.RELEASE.jar.part
sha1 file found for file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE.jar: checking…
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE.jar.sha1
to /var/folders/k3/zv8hzdm17vv69j485fv3cf9r0000gn/T/ivytmp5539242461760594451sha1
sha1 OK for file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter/1.5.14.RELEASE/spring-boot-starter-1.5.14.RELEASE.jar
[SUCCESSFUL ] org.springframework.boot#spring-boot-starter;1.5.14.RELEASE!spring-boot-starter.jar (4ms)
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE.jar
downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE.jar …
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE.jar
to /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-tomcat/jars/spring-boot-starter-tomcat-1.5.14.RELEASE.jar.part
sha1 file found for file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE.jar: checking…
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE.jar.sha1
to /var/folders/k3/zv8hzdm17vv69j485fv3cf9r0000gn/T/ivytmp676781518370083612sha1
sha1 OK for file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/1.5.14.RELEASE/spring-boot-starter-tomcat-1.5.14.RELEASE.jar
[SUCCESSFUL ] org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE!spring-boot-starter-tomcat.jar (3ms)
[NOT REQUIRED] org.hibernate#hibernate-validator;5.3.6.Final!hibernate-validator.jar
trying file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.8.11.2/jackson-databind-2.8.11.2.jar
tried file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.8.11.2/jackson-databind-2.8.11.2.jar
downloading file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.8.11.2/jackson-databind-2.8.11.2.jar …
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.8.11.2/jackson-databind-2.8.11.2.jar
to /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-databind/bundles/jackson-databind-2.8.11.2.jar.part
sha1 file found for file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.8.11.2/jackson-databind-2.8.11.2.jar: checking…
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.8.11.2/jackson-databind-2.8.11.2.jar.sha1
to /var/folders/k3/zv8hzdm17vv69j485fv3cf9r0000gn/T/ivytmp9174252024126839545sha1
sha1 OK for file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.8.11.2/jackson-databind-2.8.11.2.jar
[SUCCESSFUL ] com.fasterxml.jackson.core#jackson-databind;2.8.11.2!jackson-databind.jar(bundle) (15ms)
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-web/4.3.18.RELEASE/spring-web-4.3.18.RELEASE.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-web/4.3.18.RELEASE/spring-web-4.3.18.RELEASE.jar
downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-web/4.3.18.RELEASE/spring-web-4.3.18.RELEASE.jar …
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-web/4.3.18.RELEASE/spring-web-4.3.18.RELEASE.jar
to /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-web/jars/spring-web-4.3.18.RELEASE.jar.part
sha1 file found for file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-web/4.3.18.RELEASE/spring-web-4.3.18.RELEASE.jar: checking…
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-web/4.3.18.RELEASE/spring-web-4.3.18.RELEASE.jar.sha1
to /var/folders/k3/zv8hzdm17vv69j485fv3cf9r0000gn/T/ivytmp7929379550550664863sha1
sha1 OK for file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-web/4.3.18.RELEASE/spring-web-4.3.18.RELEASE.jar
[SUCCESSFUL ] org.springframework#spring-web;4.3.18.RELEASE!spring-web.jar (15ms)
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-webmvc/4.3.18.RELEASE/spring-webmvc-4.3.18.RELEASE.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-webmvc/4.3.18.RELEASE/spring-webmvc-4.3.18.RELEASE.jar
downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-webmvc/4.3.18.RELEASE/spring-webmvc-4.3.18.RELEASE.jar …
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-webmvc/4.3.18.RELEASE/spring-webmvc-4.3.18.RELEASE.jar
to /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-webmvc/jars/spring-webmvc-4.3.18.RELEASE.jar.part
sha1 file found for file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-webmvc/4.3.18.RELEASE/spring-webmvc-4.3.18.RELEASE.jar: checking…
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-webmvc/4.3.18.RELEASE/spring-webmvc-4.3.18.RELEASE.jar.sha1
to /var/folders/k3/zv8hzdm17vv69j485fv3cf9r0000gn/T/ivytmp5375232448671413963sha1
sha1 OK for file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-webmvc/4.3.18.RELEASE/spring-webmvc-4.3.18.RELEASE.jar
[SUCCESSFUL ] org.springframework#spring-webmvc;4.3.18.RELEASE!spring-webmvc.jar (12ms)
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot/1.5.14.RELEASE/spring-boot-1.5.14.RELEASE.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot/1.5.14.RELEASE/spring-boot-1.5.14.RELEASE.jar
downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot/1.5.14.RELEASE/spring-boot-1.5.14.RELEASE.jar …
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot/1.5.14.RELEASE/spring-boot-1.5.14.RELEASE.jar
to /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot/jars/spring-boot-1.5.14.RELEASE.jar.part
sha1 file found for file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot/1.5.14.RELEASE/spring-boot-1.5.14.RELEASE.jar: checking…
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot/1.5.14.RELEASE/spring-boot-1.5.14.RELEASE.jar.sha1
to /var/folders/k3/zv8hzdm17vv69j485fv3cf9r0000gn/T/ivytmp6714289266160443420sha1
sha1 OK for file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot/1.5.14.RELEASE/spring-boot-1.5.14.RELEASE.jar
[SUCCESSFUL ] org.springframework.boot#spring-boot;1.5.14.RELEASE!spring-boot.jar (11ms)
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/1.5.14.RELEASE/spring-boot-autoconfigure-1.5.14.RELEASE.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/1.5.14.RELEASE/spring-boot-autoconfigure-1.5.14.RELEASE.jar
downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/1.5.14.RELEASE/spring-boot-autoconfigure-1.5.14.RELEASE.jar …
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/1.5.14.RELEASE/spring-boot-autoconfigure-1.5.14.RELEASE.jar
to /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-autoconfigure/jars/spring-boot-autoconfigure-1.5.14.RELEASE.jar.part
sha1 file found for file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/1.5.14.RELEASE/spring-boot-autoconfigure-1.5.14.RELEASE.jar: checking…
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/1.5.14.RELEASE/spring-boot-autoconfigure-1.5.14.RELEASE.jar.sha1
to /var/folders/k3/zv8hzdm17vv69j485fv3cf9r0000gn/T/ivytmp4880009126157084118sha1
sha1 OK for file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/1.5.14.RELEASE/spring-boot-autoconfigure-1.5.14.RELEASE.jar
[SUCCESSFUL ] org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE!spring-boot-autoconfigure.jar (13ms)
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE.jar
downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE.jar …
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE.jar
to /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-logging/jars/spring-boot-starter-logging-1.5.14.RELEASE.jar.part
sha1 file found for file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE.jar: checking…
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE.jar.sha1
to /var/folders/k3/zv8hzdm17vv69j485fv3cf9r0000gn/T/ivytmp5803630465405495492sha1
sha1 OK for file:/Users/ryanjbaxter/.m2/repository/org/springframework/boot/spring-boot-starter-logging/1.5.14.RELEASE/spring-boot-starter-logging-1.5.14.RELEASE.jar
[SUCCESSFUL ] org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE!spring-boot-starter-logging.jar (4ms)
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-core/4.3.18.RELEASE/spring-core-4.3.18.RELEASE.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-core/4.3.18.RELEASE/spring-core-4.3.18.RELEASE.jar
downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-core/4.3.18.RELEASE/spring-core-4.3.18.RELEASE.jar …
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-core/4.3.18.RELEASE/spring-core-4.3.18.RELEASE.jar
to /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-core/jars/spring-core-4.3.18.RELEASE.jar.part
sha1 file found for file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-core/4.3.18.RELEASE/spring-core-4.3.18.RELEASE.jar: checking…
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-core/4.3.18.RELEASE/spring-core-4.3.18.RELEASE.jar.sha1
to /var/folders/k3/zv8hzdm17vv69j485fv3cf9r0000gn/T/ivytmp7706058841604300746sha1
sha1 OK for file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-core/4.3.18.RELEASE/spring-core-4.3.18.RELEASE.jar
[SUCCESSFUL ] org.springframework#spring-core;4.3.18.RELEASE!spring-core.jar (17ms)
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-context/4.3.18.RELEASE/spring-context-4.3.18.RELEASE.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-context/4.3.18.RELEASE/spring-context-4.3.18.RELEASE.jar
downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-context/4.3.18.RELEASE/spring-context-4.3.18.RELEASE.jar …
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-context/4.3.18.RELEASE/spring-context-4.3.18.RELEASE.jar
to /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-context/jars/spring-context-4.3.18.RELEASE.jar.part
sha1 file found for file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-context/4.3.18.RELEASE/spring-context-4.3.18.RELEASE.jar: checking…
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-context/4.3.18.RELEASE/spring-context-4.3.18.RELEASE.jar.sha1
to /var/folders/k3/zv8hzdm17vv69j485fv3cf9r0000gn/T/ivytmp1723869630484831376sha1
sha1 OK for file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-context/4.3.18.RELEASE/spring-context-4.3.18.RELEASE.jar
[SUCCESSFUL ] org.springframework#spring-context;4.3.18.RELEASE!spring-context.jar (15ms)
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-aop/4.3.18.RELEASE/spring-aop-4.3.18.RELEASE.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-aop/4.3.18.RELEASE/spring-aop-4.3.18.RELEASE.jar
downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-aop/4.3.18.RELEASE/spring-aop-4.3.18.RELEASE.jar …
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-aop/4.3.18.RELEASE/spring-aop-4.3.18.RELEASE.jar
to /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-aop/jars/spring-aop-4.3.18.RELEASE.jar.part
sha1 file found for file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-aop/4.3.18.RELEASE/spring-aop-4.3.18.RELEASE.jar: checking…
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-aop/4.3.18.RELEASE/spring-aop-4.3.18.RELEASE.jar.sha1
to /var/folders/k3/zv8hzdm17vv69j485fv3cf9r0000gn/T/ivytmp6069974179562885060sha1
sha1 OK for file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-aop/4.3.18.RELEASE/spring-aop-4.3.18.RELEASE.jar
[SUCCESSFUL ] org.springframework#spring-aop;4.3.18.RELEASE!spring-aop.jar (7ms)
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-beans/4.3.18.RELEASE/spring-beans-4.3.18.RELEASE.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-beans/4.3.18.RELEASE/spring-beans-4.3.18.RELEASE.jar
downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-beans/4.3.18.RELEASE/spring-beans-4.3.18.RELEASE.jar …
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-beans/4.3.18.RELEASE/spring-beans-4.3.18.RELEASE.jar
to /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-beans/jars/spring-beans-4.3.18.RELEASE.jar.part
sha1 file found for file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-beans/4.3.18.RELEASE/spring-beans-4.3.18.RELEASE.jar: checking…
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-beans/4.3.18.RELEASE/spring-beans-4.3.18.RELEASE.jar.sha1
to /var/folders/k3/zv8hzdm17vv69j485fv3cf9r0000gn/T/ivytmp9119443013496931363sha1
sha1 OK for file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-beans/4.3.18.RELEASE/spring-beans-4.3.18.RELEASE.jar
[SUCCESSFUL ] org.springframework#spring-beans;4.3.18.RELEASE!spring-beans.jar (10ms)
trying file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-expression/4.3.18.RELEASE/spring-expression-4.3.18.RELEASE.jar
tried file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-expression/4.3.18.RELEASE/spring-expression-4.3.18.RELEASE.jar
downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-expression/4.3.18.RELEASE/spring-expression-4.3.18.RELEASE.jar …
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-expression/4.3.18.RELEASE/spring-expression-4.3.18.RELEASE.jar
to /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-expression/jars/spring-expression-4.3.18.RELEASE.jar.part
sha1 file found for file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-expression/4.3.18.RELEASE/spring-expression-4.3.18.RELEASE.jar: checking…
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-expression/4.3.18.RELEASE/spring-expression-4.3.18.RELEASE.jar.sha1
to /var/folders/k3/zv8hzdm17vv69j485fv3cf9r0000gn/T/ivytmp6908217346879162461sha1
sha1 OK for file:/Users/ryanjbaxter/.m2/repository/org/springframework/spring-expression/4.3.18.RELEASE/spring-expression-4.3.18.RELEASE.jar
[SUCCESSFUL ] org.springframework#spring-expression;4.3.18.RELEASE!spring-expression.jar (7ms)
[NOT REQUIRED] ch.qos.logback#logback-classic;1.1.11!logback-classic.jar
[NOT REQUIRED] org.slf4j#jcl-over-slf4j;1.7.25!jcl-over-slf4j.jar
[NOT REQUIRED] org.slf4j#jul-to-slf4j;1.7.25!jul-to-slf4j.jar
[NOT REQUIRED] org.slf4j#log4j-over-slf4j;1.7.25!log4j-over-slf4j.jar
[NOT REQUIRED] ch.qos.logback#logback-core;1.1.11!logback-core.jar
[NOT REQUIRED] org.slf4j#slf4j-api;1.7.25!slf4j-api.jar
[NOT REQUIRED] org.apache.tomcat.embed#tomcat-embed-core;8.5.31!tomcat-embed-core.jar
[NOT REQUIRED] org.apache.tomcat.embed#tomcat-embed-el;8.5.31!tomcat-embed-el.jar
[NOT REQUIRED] org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31!tomcat-embed-websocket.jar
[NOT REQUIRED] org.apache.tomcat#tomcat-annotations-api;8.5.31!tomcat-annotations-api.jar
[NOT REQUIRED] javax.validation#validation-api;1.1.0.Final!validation-api.jar
[NOT REQUIRED] org.jboss.logging#jboss-logging;3.3.2.Final!jboss-logging.jar
[NOT REQUIRED] com.fasterxml#classmate;1.3.4!classmate.jar(bundle)
[NOT REQUIRED] com.fasterxml.jackson.core#jackson-annotations;2.8.0!jackson-annotations.jar(bundle)
trying file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.8.11/jackson-core-2.8.11.jar
tried file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.8.11/jackson-core-2.8.11.jar
downloading file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.8.11/jackson-core-2.8.11.jar …
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.8.11/jackson-core-2.8.11.jar
to /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-core/bundles/jackson-core-2.8.11.jar.part
sha1 file found for file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.8.11/jackson-core-2.8.11.jar: checking…
localm2: downloading file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.8.11/jackson-core-2.8.11.jar.sha1
to /var/folders/k3/zv8hzdm17vv69j485fv3cf9r0000gn/T/ivytmp5616606955331678420sha1
sha1 OK for file:/Users/ryanjbaxter/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.8.11/jackson-core-2.8.11.jar
[SUCCESSFUL ] com.fasterxml.jackson.core#jackson-core;2.8.11!jackson-core.jar(bundle) (6ms)
[NOT REQUIRED] org.yaml#snakeyaml;1.17!snakeyaml.jar(bundle)
[NOT REQUIRED] commons-logging#commons-logging;1.2!commons-logging.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE!spring-cloud-commons.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE!spring-cloud-context.jar
[NOT REQUIRED] org.springframework.vault#spring-vault-core;1.1.2.RELEASE!spring-vault-core.jar
[NOT REQUIRED] org.springframework.security#spring-security-crypto;4.2.7.RELEASE!spring-security-crypto.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE!spring-cloud-contract-verifier.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE!spring-cloud-contract-shade.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE!spring-cloud-contract-spec.jar
[NOT REQUIRED] junit#junit;4.12!junit.jar
[NOT REQUIRED] org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE!spring-boot-test-autoconfigure.jar
[NOT REQUIRED] javax.inject#javax.inject;1!javax.inject.jar
[NOT REQUIRED] com.github.tomakehurst#wiremock-standalone;2.16.0!wiremock-standalone.jar
[NOT REQUIRED] com.toomuchcoding.jsonassert#jsonassert;0.4.12!jsonassert.jar
[NOT REQUIRED] org.skyscreamer#jsonassert;1.4.0!jsonassert.jar
[NOT REQUIRED] com.github.jknack#handlebars;4.0.6!handlebars.jar
[NOT REQUIRED] commons-beanutils#commons-beanutils;1.9.3!commons-beanutils.jar
[NOT REQUIRED] org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE!spring-boot-starter-test.jar
[NOT REQUIRED] dk.brics.automaton#automaton;1.11-8!automaton.jar
[NOT REQUIRED] org.apache.commons#commons-text;1.1!commons-text.jar
[NOT REQUIRED] org.apache.commons#commons-lang3;3.5!commons-lang3.jar
[NOT REQUIRED] org.springframework.boot#spring-boot-test;1.5.14.RELEASE!spring-boot-test.jar
[NOT REQUIRED] com.jayway.jsonpath#json-path;2.2.0!json-path.jar
[NOT REQUIRED] net.minidev#json-smart;2.2.1!json-smart.jar(bundle)
[NOT REQUIRED] net.minidev#accessors-smart;1.1!accessors-smart.jar(bundle)
[NOT REQUIRED] org.ow2.asm#asm;5.0.3!asm.jar
[NOT REQUIRED] com.vaadin.external.google#android-json;0.0.20131108.vaadin1!android-json.jar
[NOT REQUIRED] org.antlr#antlr4-runtime;4.5.1-1!antlr4-runtime.jar
[NOT REQUIRED] org.mozilla#rhino;1.7R4!rhino.jar
[NOT REQUIRED] commons-collections#commons-collections;3.2.2!commons-collections.jar
[NOT REQUIRED] org.assertj#assertj-core;2.6.0!assertj-core.jar(bundle)
[NOT REQUIRED] org.mockito#mockito-core;1.10.19!mockito-core.jar
[NOT REQUIRED] org.hamcrest#hamcrest-core;1.3!hamcrest-core.jar
[NOT REQUIRED] org.hamcrest#hamcrest-library;1.3!hamcrest-library.jar
[NOT REQUIRED] org.springframework#spring-test;4.3.18.RELEASE!spring-test.jar
[NOT REQUIRED] org.objenesis#objenesis;2.1!objenesis.jar
[NOT REQUIRED] org.cloudfoundry#cloudfoundry-client-lib;1.1.3!cloudfoundry-client-lib.jar
[NOT REQUIRED] org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE!spring-security-oauth2.jar
[NOT REQUIRED] org.apache.httpcomponents#httpclient;4.5.5!httpclient.jar
[NOT REQUIRED] commons-io#commons-io;2.1!commons-io.jar
[NOT REQUIRED] com.esotericsoftware.yamlbeans#yamlbeans;1.06!yamlbeans.jar
[NOT REQUIRED] org.apache.tomcat#tomcat-juli;8.0.15!tomcat-juli.jar
[NOT REQUIRED] com.google.protobuf#protobuf-java;2.6.1!protobuf-java.jar(bundle)
[NOT REQUIRED] org.springframework.security#spring-security-core;4.2.7.RELEASE!spring-security-core.jar
[NOT REQUIRED] org.springframework.security#spring-security-config;4.2.7.RELEASE!spring-security-config.jar
[NOT REQUIRED] org.springframework.security#spring-security-web;4.2.7.RELEASE!spring-security-web.jar
[NOT REQUIRED] commons-codec#commons-codec;1.10!commons-codec.jar
[NOT REQUIRED] org.codehaus.jackson#jackson-mapper-asl;1.9.13!jackson-mapper-asl.jar
[NOT REQUIRED] aopalliance#aopalliance;1.0!aopalliance.jar
[NOT REQUIRED] org.codehaus.jackson#jackson-core-asl;1.9.13!jackson-core-asl.jar
[NOT REQUIRED] org.apache.httpcomponents#httpcore;4.4.9!httpcore.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE!spring-cloud-starter.jar
[NOT REQUIRED] org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE!spring-boot-starter-cloud-connectors.jar
[NOT REQUIRED] org.springframework.security#spring-security-rsa;1.0.3.RELEASE!spring-security-rsa.jar
[NOT REQUIRED] org.bouncycastle#bcpkix-jdk15on;1.55!bcpkix-jdk15on.jar
[NOT REQUIRED] org.bouncycastle#bcprov-jdk15on;1.55!bcprov-jdk15on.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE!spring-cloud-spring-service-connector.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE!spring-cloud-cloudfoundry-connector.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE!spring-cloud-heroku-connector.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE!spring-cloud-localconfig-connector.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE!spring-cloud-core.jar
[NOT REQUIRED] org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE!spring-boot-starter-aop.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE!spring-cloud-sleuth-core.jar
[NOT REQUIRED] org.aspectj#aspectjweaver;1.8.13!aspectjweaver.jar
[NOT REQUIRED] org.aspectj#aspectjrt;1.8.13!aspectjrt.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE!spring-cloud-starter-zookeeper-config.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE!spring-cloud-starter-zookeeper-discovery.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE!spring-cloud-starter-zookeeper.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE!spring-cloud-zookeeper-config.jar
[NOT REQUIRED] org.apache.curator#curator-recipes;2.11.1!curator-recipes.jar(bundle)
[NOT REQUIRED] org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE!spring-cloud-zookeeper-core.jar
[NOT REQUIRED] org.apache.curator#curator-framework;2.11.1!curator-framework.jar(bundle)
[NOT REQUIRED] org.apache.curator#curator-client;2.11.1!curator-client.jar(bundle)
[NOT REQUIRED] org.apache.zookeeper#zookeeper;3.4.8!zookeeper.jar
[NOT REQUIRED] com.google.guava#guava;18.0!guava.jar(bundle)
jline#jline;0.9.94 in default: excluding jline#jline;0.9.94!jline.jar
jline#jline;0.9.94 in default: excluding jline#jline;0.9.94!jline.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE!spring-cloud-zookeeper-discovery.jar
[NOT REQUIRED] org.apache.curator#curator-x-discovery;2.11.1!curator-x-discovery.jar(bundle)
[NOT REQUIRED] org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE!spring-cloud-netflix-core.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE!spring-cloud-starter-archaius.jar
[NOT REQUIRED] com.netflix.ribbon#ribbon;2.2.5!ribbon.jar
[NOT REQUIRED] com.netflix.ribbon#ribbon-core;2.2.5!ribbon-core.jar
[NOT REQUIRED] com.netflix.ribbon#ribbon-httpclient;2.2.5!ribbon-httpclient.jar
[NOT REQUIRED] com.netflix.ribbon#ribbon-loadbalancer;2.2.5!ribbon-loadbalancer.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE!spring-cloud-starter-netflix-archaius.jar
[NOT REQUIRED] com.netflix.archaius#archaius-core;0.7.4!archaius-core.jar
[NOT REQUIRED] commons-configuration#commons-configuration;1.8!commons-configuration.jar
[NOT REQUIRED] commons-lang#commons-lang;2.6!commons-lang.jar
[NOT REQUIRED] com.google.code.findbugs#jsr305;3.0.1!jsr305.jar
[NOT REQUIRED] com.netflix.ribbon#ribbon-transport;2.2.5!ribbon-transport.jar
[NOT REQUIRED] com.netflix.hystrix#hystrix-core;1.5.12!hystrix-core.jar
[NOT REQUIRED] io.reactivex#rxjava;1.2.0!rxjava.jar
[NOT REQUIRED] io.reactivex#rxnetty;0.4.9!rxnetty.jar
[NOT REQUIRED] com.google.code.findbugs#annotations;2.0.0!annotations.jar
[NOT REQUIRED] io.reactivex#rxnetty-contexts;0.4.9!rxnetty-contexts.jar
[NOT REQUIRED] io.reactivex#rxnetty-servo;0.4.9!rxnetty-servo.jar
[NOT REQUIRED] com.netflix.netflix-commons#netflix-statistics;0.1.1!netflix-statistics.jar
[NOT REQUIRED] com.netflix.servo#servo-core;0.10.1!servo-core.jar
[NOT REQUIRED] com.netflix.netflix-commons#netflix-commons-util;0.1.1!netflix-commons-util.jar
[NOT REQUIRED] com.netflix.servo#servo-internal;0.10.1!servo-internal.jar
[NOT REQUIRED] io.netty#netty-codec-http;4.0.27.Final!netty-codec-http.jar
[NOT REQUIRED] io.netty#netty-transport-native-epoll;4.0.27.Final!netty-transport-native-epoll.jar
[NOT REQUIRED] io.netty#netty-codec;4.0.27.Final!netty-codec.jar
[NOT REQUIRED] io.netty#netty-handler;4.0.27.Final!netty-handler.jar
[NOT REQUIRED] io.netty#netty-transport;4.0.27.Final!netty-transport.jar
[NOT REQUIRED] io.netty#netty-buffer;4.0.27.Final!netty-buffer.jar
[NOT REQUIRED] io.netty#netty-common;4.0.27.Final!netty-common.jar
[NOT REQUIRED] org.hdrhistogram#HdrHistogram;2.1.9!HdrHistogram.jar(bundle)
[NOT REQUIRED] com.sun.jersey#jersey-client;1.19.1!jersey-client.jar
[NOT REQUIRED] com.sun.jersey.contribs#jersey-apache-client4;1.19.1!jersey-apache-client4.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE!spring-cloud-starter-consul-bus.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE!spring-cloud-starter-consul-config.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE!spring-cloud-starter-consul-discovery.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE!spring-cloud-starter-consul.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE!spring-cloud-consul-binder.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE!spring-cloud-bus.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE!spring-cloud-consul-core.jar
[NOT REQUIRED] com.ecwid.consul#consul-api;1.3.0!consul-api.jar
[NOT REQUIRED] org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE!spring-boot-starter-actuator.jar
[NOT REQUIRED] org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE!spring-boot-starter-validation.jar
[NOT REQUIRED] org.springframework#spring-messaging;4.3.18.RELEASE!spring-messaging.jar
[NOT REQUIRED] org.springframework.integration#spring-integration-core;4.3.17.RELEASE!spring-integration-core.jar
[NOT REQUIRED] org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE!spring-integration-jmx.jar
[NOT REQUIRED] org.springframework#spring-tuple;1.0.0.RELEASE!spring-tuple.jar
[NOT REQUIRED] org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE!spring-integration-tuple.jar
[NOT REQUIRED] org.springframework.retry#spring-retry;1.2.2.RELEASE!spring-retry.jar
[NOT REQUIRED] org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE!spring-boot-actuator.jar
[NOT REQUIRED] org.springframework#spring-tx;4.3.18.RELEASE!spring-tx.jar
[NOT REQUIRED] com.esotericsoftware#kryo-shaded;3.0.3!kryo-shaded.jar(bundle)
[NOT REQUIRED] com.esotericsoftware#minlog;1.3.0!minlog.jar(bundle)
[NOT REQUIRED] org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE!spring-cloud-consul-config.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE!spring-cloud-consul-discovery.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE!spring-cloud-starter-ribbon.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE!spring-cloud-starter-netflix-ribbon.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE!spring-cloud-security.jar
[NOT REQUIRED] org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE!spring-boot-starter-security.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE!spring-cloud-aws-context.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE!spring-cloud-aws-autoconfigure.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE!spring-cloud-aws-core.jar
[NOT REQUIRED] com.amazonaws#aws-java-sdk-core;1.11.125!aws-java-sdk-core.jar
[NOT REQUIRED] com.amazonaws#aws-java-sdk-s3;1.11.125!aws-java-sdk-s3.jar
[NOT REQUIRED] com.amazonaws#aws-java-sdk-ec2;1.11.125!aws-java-sdk-ec2.jar
[NOT REQUIRED] com.amazonaws#aws-java-sdk-cloudformation;1.11.125!aws-java-sdk-cloudformation.jar
[NOT REQUIRED] software.amazon.ion#ion-java;1.0.2!ion-java.jar(bundle)
[NOT REQUIRED] com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11!jackson-dataformat-cbor.jar(bundle)
[NOT REQUIRED] joda-time#joda-time;2.9.9!joda-time.jar
[NOT REQUIRED] com.amazonaws#aws-java-sdk-kms;1.11.125!aws-java-sdk-kms.jar
[NOT REQUIRED] com.amazonaws#jmespath-java;1.11.125!jmespath-java.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE!spring-cloud-netflix-eureka-client.jar
[NOT REQUIRED] com.netflix.eureka#eureka-client;1.7.2!eureka-client.jar
[NOT REQUIRED] com.netflix.eureka#eureka-core;1.7.2!eureka-core.jar
[NOT REQUIRED] com.netflix.ribbon#ribbon-eureka;2.2.5!ribbon-eureka.jar
[NOT REQUIRED] com.thoughtworks.xstream#xstream;1.4.10!xstream.jar
[NOT REQUIRED] org.codehaus.jettison#jettison;1.3.7!jettison.jar(bundle)
[NOT REQUIRED] com.netflix.netflix-commons#netflix-eventbus;0.3.0!netflix-eventbus.jar
[NOT REQUIRED] javax.ws.rs#jsr311-api;1.1.1!jsr311-api.jar
[NOT REQUIRED] com.sun.jersey#jersey-core;1.19.1!jersey-core.jar
[NOT REQUIRED] com.google.inject#guice;4.1.0!guice.jar
[NOT REQUIRED] stax#stax-api;1.0.1!stax-api.jar
[NOT REQUIRED] com.netflix.netflix-commons#netflix-infix;0.3.0!netflix-infix.jar
[NOT REQUIRED] org.apache.commons#commons-math;2.2!commons-math.jar
[NOT REQUIRED] commons-jxpath#commons-jxpath;1.3!commons-jxpath.jar
[NOT REQUIRED] org.antlr#antlr-runtime;3.4!antlr-runtime.jar
[NOT REQUIRED] com.google.code.gson#gson;2.8.5!gson.jar
[NOT REQUIRED] org.antlr#stringtemplate;3.2.1!stringtemplate.jar
[NOT REQUIRED] antlr#antlr;2.7.7!antlr.jar
[NOT REQUIRED] xmlpull#xmlpull;1.1.3.1!xmlpull.jar
[NOT REQUIRED] xpp3#xpp3_min;1.1.4c!xpp3_min.jar
[NOT REQUIRED] org.codehaus.woodstox#woodstox-core-asl;4.4.1!woodstox-core-asl.jar
[NOT REQUIRED] javax.xml.stream#stax-api;1.0-2!stax-api.jar
[NOT REQUIRED] org.codehaus.woodstox#stax2-api;3.1.4!stax2-api.jar(bundle)
[NOT REQUIRED] org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE!spring-cloud-netflix-eureka-server.jar
[NOT REQUIRED] org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE!spring-boot-starter-freemarker.jar
[NOT REQUIRED] com.sun.jersey#jersey-servlet;1.19.1!jersey-servlet.jar
[NOT REQUIRED] com.sun.jersey#jersey-server;1.19.1!jersey-server.jar
[NOT REQUIRED] com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11!jackson-dataformat-xml.jar(bundle)
[NOT REQUIRED] org.freemarker#freemarker;2.3.28!freemarker.jar
[NOT REQUIRED] org.springframework#spring-context-support;4.3.18.RELEASE!spring-context-support.jar
[NOT REQUIRED] com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11!jackson-module-jaxb-annotations.jar(bundle)
[NOT REQUIRED] com.fasterxml.woodstox#woodstox-core;5.0.3!woodstox-core.jar(bundle)
[NOT REQUIRED] org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE!spring-cloud-config-client.jar
[NOT REQUIRED] org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r!org.eclipse.jgit.jar
[NOT REQUIRED] com.jcraft#jsch;0.1.54!jsch.jar
[NOT REQUIRED] com.googlecode.javaewah#JavaEWAH;0.7.9!JavaEWAH.jar(bundle)
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE!spring-cloud-starter-stream-rabbit.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE!spring-cloud-stream-binder-rabbit.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE!spring-cloud-stream-binder-rabbit-core.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE!spring-cloud-stream-codec.jar
[NOT REQUIRED] org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE!spring-boot-starter-amqp.jar
[NOT REQUIRED] org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE!spring-integration-amqp.jar
[NOT REQUIRED] org.springframework.amqp#spring-rabbit;1.7.8.RELEASE!spring-rabbit.jar
[NOT REQUIRED] org.springframework.amqp#spring-amqp;1.7.8.RELEASE!spring-amqp.jar
[NOT REQUIRED] com.rabbitmq#http-client;1.1.1.RELEASE!http-client.jar
[NOT REQUIRED] com.rabbitmq#amqp-client;4.0.3!amqp-client.jar
[NOT REQUIRED] org.codehaus.groovy#groovy;2.5.0!groovy.jar
resolve done (24314ms resolve - 1732ms download)
:: resolving dependencies :: caller#all-caller;working66
confs: [default]
validate = false
refresh = false
resolving dependencies for configuration 'default'
== resolving dependencies for caller#all-caller;working66 [default]
loadData of caller#all-caller;working66 of rootConf=default
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway-mvc/ivy-1.0.2.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway-mvc/ivy-1.0.2.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE
found org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE in jcenter
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-web/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-web/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
found org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.boot#spring-boot-starter;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
found org.springframework.boot#spring-boot-starter;1.5.14.RELEASE in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.boot#spring-boot;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot;1.5.14.RELEASE
found org.springframework.boot#spring-boot;1.5.14.RELEASE in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework#spring-core;4.3.18.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-core/ivy-4.3.18.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework#spring-core;4.3.18.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-core/ivy-4.3.18.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework#spring-core;4.3.18.RELEASE
found org.springframework#spring-core;4.3.18.RELEASE in localm2
dependency descriptor has been mediated: dependency: net.sf.jopt-simple#jopt-simple;5.0.3 {optional=[compile(), master()]} ⇒ dependency: net.sf.jopt-simple#jopt-simple;4.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
== resolving dependencies org.springframework.boot#spring-boot;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
excluding dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: net.sf.jopt-simple#jopt-simple;5.0.3 {optional=[compile(), master()]} ⇒ dependency: net.sf.jopt-simple#jopt-simple;4.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
== resolving dependencies org.springframework.boot#spring-boot;1.5.14.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework#spring-context;4.3.18.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-context/ivy-4.3.18.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework#spring-context;4.3.18.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-context/ivy-4.3.18.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework#spring-context;4.3.18.RELEASE
found org.springframework#spring-context;4.3.18.RELEASE in localm2
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
== resolving dependencies org.springframework.boot#spring-boot;1.5.14.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework#spring-aop;4.3.18.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-aop/ivy-4.3.18.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework#spring-aop;4.3.18.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-aop/ivy-4.3.18.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework#spring-aop;4.3.18.RELEASE
found org.springframework#spring-aop;4.3.18.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.apache.commons#commons-pool2;2.4.2 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-pool2;2.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.apache.commons#commons-pool2;2.4.2 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-pool2;2.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
== resolving dependencies org.springframework#spring-aop;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.apache.commons#commons-pool2;2.4.2 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-pool2;2.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-pool2;2.4.2 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-pool2;2.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-pool2;2.4.2 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-pool2;2.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-pool2;2.4.2 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-pool2;2.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework#spring-beans;4.3.18.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-beans/ivy-4.3.18.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework#spring-beans;4.3.18.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-beans/ivy-4.3.18.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework#spring-beans;4.3.18.RELEASE
found org.springframework#spring-beans;4.3.18.RELEASE in localm2
== resolving dependencies org.springframework#spring-aop;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework#spring-beans;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.apache.commons#commons-pool2;2.4.2 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-pool2;2.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-pool2;2.4.2 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-pool2;2.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-pool2;2.4.2 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-pool2;2.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-pool2;2.4.2 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-pool2;2.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-beans;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-aop;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-aop;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework#spring-expression;4.3.18.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-expression/ivy-4.3.18.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework#spring-expression;4.3.18.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-expression/ivy-4.3.18.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework#spring-expression;4.3.18.RELEASE
found org.springframework#spring-expression;4.3.18.RELEASE in localm2
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework#spring-expression;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-expression;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-autoconfigure/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-autoconfigure/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
found org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-logging/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-logging/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE
found org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→ch.qos.logback#logback-classic;1.1.11 [compile→master()]
loadData of ch.qos.logback#logback-classic;1.1.11 of rootConf=default
using downloadGrapes to resolve ch.qos.logback#logback-classic;1.1.11
downloadGrapes: Checking cache for: dependency: ch.qos.logback#logback-classic;1.1.11 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/ch.qos.logback/logback-classic/ivy-1.1.11.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for ch.qos.logback#logback-classic;1.1.11 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/ch.qos.logback/logback-classic/ivy-1.1.11.xml
downloadGrapes: module revision found in cache: ch.qos.logback#logback-classic;1.1.11
found ch.qos.logback#logback-classic;1.1.11 in localm2
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#log4j-over-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#log4j-over-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#jul-to-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#jul-to-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.h2database#h2;1.2.132 {test=[runtime(), master()]} ⇒ dependency: com.h2database#h2;1.4.197 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.9 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.0 {optional=[compile(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;1.7.1 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→ch.qos.logback#logback-classic;1.1.11 [compile→compile()]
loadData of ch.qos.logback#logback-classic;1.1.11 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#log4j-over-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#log4j-over-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#jul-to-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#jul-to-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.h2database#h2;1.2.132 {test=[runtime(), master()]} ⇒ dependency: com.h2database#h2;1.4.197 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.9 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.0 {optional=[compile(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;1.7.1 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
== resolving dependencies ch.qos.logback#logback-classic;1.1.11→ch.qos.logback#logback-core;1.1.11 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#log4j-over-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#log4j-over-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#jul-to-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#jul-to-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.h2database#h2;1.2.132 {test=[runtime(), master()]} ⇒ dependency: com.h2database#h2;1.4.197 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.9 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.0 {optional=[compile(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;1.7.1 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#log4j-over-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#log4j-over-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#jul-to-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#jul-to-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.h2database#h2;1.2.132 {test=[runtime(), master()]} ⇒ dependency: com.h2database#h2;1.4.197 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.9 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.0 {optional=[compile(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;1.7.1 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#log4j-over-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#log4j-over-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#jul-to-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#jul-to-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.h2database#h2;1.2.132 {test=[runtime(), master()]} ⇒ dependency: com.h2database#h2;1.4.197 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.9 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.0 {optional=[compile(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;1.7.1 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#log4j-over-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#log4j-over-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#jul-to-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#jul-to-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.h2database#h2;1.2.132 {test=[runtime(), master()]} ⇒ dependency: com.h2database#h2;1.4.197 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.9 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.0 {optional=[compile(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;1.7.1 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
loadData of ch.qos.logback#logback-core;1.1.11 of rootConf=default
using downloadGrapes to resolve ch.qos.logback#logback-core;1.1.11
downloadGrapes: Checking cache for: dependency: ch.qos.logback#logback-core;1.1.11 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/ch.qos.logback/logback-core/ivy-1.1.11.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for ch.qos.logback#logback-core;1.1.11 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/ch.qos.logback/logback-core/ivy-1.1.11.xml
downloadGrapes: module revision found in cache: ch.qos.logback#logback-core;1.1.11
found ch.qos.logback#logback-core;1.1.11 in localm2
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.2 {test=[runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;1.7.1 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
== resolving dependencies ch.qos.logback#logback-classic;1.1.11→ch.qos.logback#logback-core;1.1.11 [compile→compile()]
loadData of ch.qos.logback#logback-core;1.1.11 of rootConf=default
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.2 {test=[runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;1.7.1 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
== resolving dependencies ch.qos.logback#logback-classic;1.1.11→org.slf4j#slf4j-api;1.7.25 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#log4j-over-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#log4j-over-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#jul-to-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#jul-to-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.h2database#h2;1.2.132 {test=[runtime(), master()]} ⇒ dependency: com.h2database#h2;1.4.197 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.9 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.0 {optional=[compile(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;1.7.1 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#log4j-over-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#log4j-over-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#jul-to-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#jul-to-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.h2database#h2;1.2.132 {test=[runtime(), master()]} ⇒ dependency: com.h2database#h2;1.4.197 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.9 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.0 {optional=[compile(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;1.7.1 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#log4j-over-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#log4j-over-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#jul-to-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#jul-to-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.h2database#h2;1.2.132 {test=[runtime(), master()]} ⇒ dependency: com.h2database#h2;1.4.197 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.9 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.0 {optional=[compile(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;1.7.1 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#log4j-over-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#log4j-over-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#jul-to-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#jul-to-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.h2database#h2;1.2.132 {test=[runtime(), master()]} ⇒ dependency: com.h2database#h2;1.4.197 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.9 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.0 {optional=[compile(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;1.7.1 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
using downloadGrapes to resolve org.slf4j#slf4j-api;1.7.25
downloadGrapes: Checking cache for: dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.slf4j/slf4j-api/ivy-1.7.25.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.slf4j#slf4j-api;1.7.25 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.slf4j/slf4j-api/ivy-1.7.25.xml
downloadGrapes: module revision found in cache: org.slf4j#slf4j-api;1.7.25
found org.slf4j#slf4j-api;1.7.25 in localm2
== resolving dependencies ch.qos.logback#logback-classic;1.1.11→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→org.slf4j#jcl-over-slf4j;1.7.25 [compile→master()]
loadData of org.slf4j#jcl-over-slf4j;1.7.25 of rootConf=default
using downloadGrapes to resolve org.slf4j#jcl-over-slf4j;1.7.25
downloadGrapes: Checking cache for: dependency: org.slf4j#jcl-over-slf4j;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.slf4j/jcl-over-slf4j/ivy-1.7.25.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.slf4j#jcl-over-slf4j;1.7.25 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.slf4j/jcl-over-slf4j/ivy-1.7.25.xml
downloadGrapes: module revision found in cache: org.slf4j#jcl-over-slf4j;1.7.25
found org.slf4j#jcl-over-slf4j;1.7.25 in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→org.slf4j#jcl-over-slf4j;1.7.25 [compile→compile()]
loadData of org.slf4j#jcl-over-slf4j;1.7.25 of rootConf=default
== resolving dependencies org.slf4j#jcl-over-slf4j;1.7.25→org.slf4j#slf4j-api;1.7.25 [compile→master()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.slf4j#jcl-over-slf4j;1.7.25→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→org.slf4j#jul-to-slf4j;1.7.25 [compile→master()]
loadData of org.slf4j#jul-to-slf4j;1.7.25 of rootConf=default
using downloadGrapes to resolve org.slf4j#jul-to-slf4j;1.7.25
downloadGrapes: Checking cache for: dependency: org.slf4j#jul-to-slf4j;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.slf4j/jul-to-slf4j/ivy-1.7.25.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.slf4j#jul-to-slf4j;1.7.25 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.slf4j/jul-to-slf4j/ivy-1.7.25.xml
downloadGrapes: module revision found in cache: org.slf4j#jul-to-slf4j;1.7.25
found org.slf4j#jul-to-slf4j;1.7.25 in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→org.slf4j#jul-to-slf4j;1.7.25 [compile→compile()]
loadData of org.slf4j#jul-to-slf4j;1.7.25 of rootConf=default
== resolving dependencies org.slf4j#jul-to-slf4j;1.7.25→org.slf4j#slf4j-api;1.7.25 [compile→master()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.slf4j#jul-to-slf4j;1.7.25→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→org.slf4j#log4j-over-slf4j;1.7.25 [compile→master()]
loadData of org.slf4j#log4j-over-slf4j;1.7.25 of rootConf=default
using downloadGrapes to resolve org.slf4j#log4j-over-slf4j;1.7.25
downloadGrapes: Checking cache for: dependency: org.slf4j#log4j-over-slf4j;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.slf4j/log4j-over-slf4j/ivy-1.7.25.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.slf4j#log4j-over-slf4j;1.7.25 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.slf4j/log4j-over-slf4j/ivy-1.7.25.xml
downloadGrapes: module revision found in cache: org.slf4j#log4j-over-slf4j;1.7.25
found org.slf4j#log4j-over-slf4j;1.7.25 in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→org.slf4j#log4j-over-slf4j;1.7.25 [compile→compile()]
loadData of org.slf4j#log4j-over-slf4j;1.7.25 of rootConf=default
== resolving dependencies org.slf4j#log4j-over-slf4j;1.7.25→org.slf4j#slf4j-api;1.7.25 [compile→master()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.slf4j#log4j-over-slf4j;1.7.25→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-tomcat/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-tomcat/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE
found org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-core;8.5.31 [compile→master()]
loadData of org.apache.tomcat.embed#tomcat-embed-core;8.5.31 of rootConf=default
using downloadGrapes to resolve org.apache.tomcat.embed#tomcat-embed-core;8.5.31
downloadGrapes: Checking cache for: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.tomcat.embed/tomcat-embed-core/ivy-8.5.31.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.apache.tomcat.embed#tomcat-embed-core;8.5.31 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.tomcat.embed/tomcat-embed-core/ivy-8.5.31.xml
downloadGrapes: module revision found in cache: org.apache.tomcat.embed#tomcat-embed-core;8.5.31
found org.apache.tomcat.embed#tomcat-embed-core;8.5.31 in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-core;8.5.31 [compile→compile()]
loadData of org.apache.tomcat.embed#tomcat-embed-core;8.5.31 of rootConf=default
== resolving dependencies org.apache.tomcat.embed#tomcat-embed-core;8.5.31→org.apache.tomcat#tomcat-annotations-api;8.5.31 [compile→master()]
loadData of org.apache.tomcat#tomcat-annotations-api;8.5.31 of rootConf=default
using downloadGrapes to resolve org.apache.tomcat#tomcat-annotations-api;8.5.31
downloadGrapes: Checking cache for: dependency: org.apache.tomcat#tomcat-annotations-api;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.tomcat/tomcat-annotations-api/ivy-8.5.31.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.apache.tomcat#tomcat-annotations-api;8.5.31 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.tomcat/tomcat-annotations-api/ivy-8.5.31.xml
downloadGrapes: module revision found in cache: org.apache.tomcat#tomcat-annotations-api;8.5.31
found org.apache.tomcat#tomcat-annotations-api;8.5.31 in localm2
== resolving dependencies org.apache.tomcat.embed#tomcat-embed-core;8.5.31→org.apache.tomcat#tomcat-annotations-api;8.5.31 [compile→compile()]
loadData of org.apache.tomcat#tomcat-annotations-api;8.5.31 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-el;8.5.31 [compile→master()]
loadData of org.apache.tomcat.embed#tomcat-embed-el;8.5.31 of rootConf=default
using downloadGrapes to resolve org.apache.tomcat.embed#tomcat-embed-el;8.5.31
downloadGrapes: Checking cache for: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.tomcat.embed/tomcat-embed-el/ivy-8.5.31.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.apache.tomcat.embed#tomcat-embed-el;8.5.31 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.tomcat.embed/tomcat-embed-el/ivy-8.5.31.xml
downloadGrapes: module revision found in cache: org.apache.tomcat.embed#tomcat-embed-el;8.5.31
found org.apache.tomcat.embed#tomcat-embed-el;8.5.31 in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-el;8.5.31 [compile→compile()]
loadData of org.apache.tomcat.embed#tomcat-embed-el;8.5.31 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 [compile→master()]
loadData of org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 of rootConf=default
using downloadGrapes to resolve org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31
downloadGrapes: Checking cache for: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.tomcat.embed/tomcat-embed-websocket/ivy-8.5.31.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.tomcat.embed/tomcat-embed-websocket/ivy-8.5.31.xml
downloadGrapes: module revision found in cache: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31
found org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 [compile→compile()]
loadData of org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 of rootConf=default
== resolving dependencies org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31→org.apache.tomcat.embed#tomcat-embed-core;8.5.31 [compile→master()]
loadData of org.apache.tomcat.embed#tomcat-embed-core;8.5.31 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31→org.apache.tomcat.embed#tomcat-embed-core;8.5.31 [compile→compile()]
loadData of org.apache.tomcat.embed#tomcat-embed-core;8.5.31 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.hibernate#hibernate-validator;5.3.6.Final [compile→master()]
loadData of org.hibernate#hibernate-validator;5.3.6.Final of rootConf=default
using downloadGrapes to resolve org.hibernate#hibernate-validator;5.3.6.Final
downloadGrapes: Checking cache for: dependency: org.hibernate#hibernate-validator;5.3.6.Final {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.hibernate/hibernate-validator/ivy-5.3.6.Final.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.hibernate#hibernate-validator;5.3.6.Final (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.hibernate/hibernate-validator/ivy-5.3.6.Final.xml
downloadGrapes: module revision found in cache: org.hibernate#hibernate-validator;5.3.6.Final
found org.hibernate#hibernate-validator;5.3.6.Final in localm2
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.hibernate#hibernate-validator;5.3.6.Final [compile→compile()]
loadData of org.hibernate#hibernate-validator;5.3.6.Final of rootConf=default
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
== resolving dependencies org.hibernate#hibernate-validator;5.3.6.Final→javax.validation#validation-api;1.1.0.Final [compile→master()]
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
loadData of javax.validation#validation-api;1.1.0.Final of rootConf=default
using downloadGrapes to resolve javax.validation#validation-api;1.1.0.Final
downloadGrapes: Checking cache for: dependency: javax.validation#validation-api;1.1.0.Final {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/javax.validation/validation-api/ivy-1.1.0.Final.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for javax.validation#validation-api;1.1.0.Final (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/javax.validation/validation-api/ivy-1.1.0.Final.xml
downloadGrapes: module revision found in cache: javax.validation#validation-api;1.1.0.Final
found javax.validation#validation-api;1.1.0.Final in localm2
== resolving dependencies org.hibernate#hibernate-validator;5.3.6.Final→javax.validation#validation-api;1.1.0.Final [compile→compile()]
loadData of javax.validation#validation-api;1.1.0.Final of rootConf=default
== resolving dependencies org.hibernate#hibernate-validator;5.3.6.Final→org.jboss.logging#jboss-logging;3.3.2.Final [compile→master()]
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
loadData of org.jboss.logging#jboss-logging;3.3.2.Final of rootConf=default
using downloadGrapes to resolve org.jboss.logging#jboss-logging;3.3.2.Final
downloadGrapes: Checking cache for: dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.jboss.logging/jboss-logging/ivy-3.3.2.Final.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.jboss.logging#jboss-logging;3.3.2.Final (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.jboss.logging/jboss-logging/ivy-3.3.2.Final.xml
downloadGrapes: module revision found in cache: org.jboss.logging#jboss-logging;3.3.2.Final
found org.jboss.logging#jboss-logging;3.3.2.Final in localm2
dependency descriptor has been mediated: dependency: log4j#log4j;1.2.16 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: log4j#log4j;1.2.17 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.logging.log4j#log4j-api;2.0 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.apache.logging.log4j#log4j-api;2.7 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.2 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {provided=[compile(), provided(), runtime(), master()]}
== resolving dependencies org.hibernate#hibernate-validator;5.3.6.Final→org.jboss.logging#jboss-logging;3.3.2.Final [compile→compile()]
loadData of org.jboss.logging#jboss-logging;3.3.2.Final of rootConf=default
dependency descriptor has been mediated: dependency: log4j#log4j;1.2.16 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: log4j#log4j;1.2.17 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.logging.log4j#log4j-api;2.0 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.apache.logging.log4j#log4j-api;2.7 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.2 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {provided=[compile(), provided(), runtime(), master()]}
== resolving dependencies org.hibernate#hibernate-validator;5.3.6.Final→com.fasterxml#classmate;1.3.4 [compile→master()]
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
loadData of com.fasterxml#classmate;1.3.4 of rootConf=default
using downloadGrapes to resolve com.fasterxml#classmate;1.3.4
downloadGrapes: Checking cache for: dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.fasterxml/classmate/ivy-1.3.4.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.fasterxml#classmate;1.3.4 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.fasterxml/classmate/ivy-1.3.4.xml
downloadGrapes: module revision found in cache: com.fasterxml#classmate;1.3.4
found com.fasterxml#classmate;1.3.4 in localm2
== resolving dependencies org.hibernate#hibernate-validator;5.3.6.Final→com.fasterxml#classmate;1.3.4 [compile→compile()]
loadData of com.fasterxml#classmate;1.3.4 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→master()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
using downloadGrapes to resolve com.fasterxml.jackson.core#jackson-databind;2.8.11.2
downloadGrapes: Checking cache for: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-databind/ivy-2.8.11.2.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.fasterxml.jackson.core#jackson-databind;2.8.11.2 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-databind/ivy-2.8.11.2.xml
downloadGrapes: module revision found in cache: com.fasterxml.jackson.core#jackson-databind;2.8.11.2
found com.fasterxml.jackson.core#jackson-databind;2.8.11.2 in localm2
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.10 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.10 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.fasterxml.jackson.core#jackson-databind;2.8.11.2→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.10 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.10 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.10 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.10 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
using downloadGrapes to resolve com.fasterxml.jackson.core#jackson-annotations;2.8.0
downloadGrapes: Checking cache for: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-annotations/ivy-2.8.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.fasterxml.jackson.core#jackson-annotations;2.8.0 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-annotations/ivy-2.8.0.xml
downloadGrapes: module revision found in cache: com.fasterxml.jackson.core#jackson-annotations;2.8.0
found com.fasterxml.jackson.core#jackson-annotations;2.8.0 in localm2
== resolving dependencies com.fasterxml.jackson.core#jackson-databind;2.8.11.2→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
== resolving dependencies com.fasterxml.jackson.core#jackson-databind;2.8.11.2→com.fasterxml.jackson.core#jackson-core;2.8.11 [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.10 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.10 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.10 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.10 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
using downloadGrapes to resolve com.fasterxml.jackson.core#jackson-core;2.8.11
downloadGrapes: Checking cache for: dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-core/ivy-2.8.11.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.fasterxml.jackson.core#jackson-core;2.8.11 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-core/ivy-2.8.11.xml
downloadGrapes: module revision found in cache: com.fasterxml.jackson.core#jackson-core;2.8.11
found com.fasterxml.jackson.core#jackson-core;2.8.11 in localm2
== resolving dependencies com.fasterxml.jackson.core#jackson-databind;2.8.11.2→com.fasterxml.jackson.core#jackson-core;2.8.11 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework#spring-web;4.3.18.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-web/ivy-4.3.18.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework#spring-web;4.3.18.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-web/ivy-4.3.18.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework#spring-web;4.3.18.RELEASE
found org.springframework#spring-web;4.3.18.RELEASE in localm2
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework#spring-webmvc;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-webmvc;4.3.18.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework#spring-webmvc;4.3.18.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-webmvc/ivy-4.3.18.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework#spring-webmvc;4.3.18.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-webmvc/ivy-4.3.18.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework#spring-webmvc;4.3.18.RELEASE
found org.springframework#spring-webmvc;4.3.18.RELEASE in localm2
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework#spring-webmvc;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-webmvc;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→runtime()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→compile]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: net.sf.jopt-simple#jopt-simple;5.0.3 {optional=[compile(), master()]} ⇒ dependency: net.sf.jopt-simple#jopt-simple;4.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
== resolving dependencies org.springframework#spring-core;4.3.18.RELEASE→commons-logging#commons-logging;1.2 [runtime→runtime()]
dependency descriptor has been mediated: dependency: net.sf.jopt-simple#jopt-simple;5.0.3 {optional=[compile(), master()]} ⇒ dependency: net.sf.jopt-simple#jopt-simple;4.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.jopt-simple#jopt-simple;5.0.3 {optional=[compile(), master()]} ⇒ dependency: net.sf.jopt-simple#jopt-simple;4.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.jopt-simple#jopt-simple;5.0.3 {optional=[compile(), master()]} ⇒ dependency: net.sf.jopt-simple#jopt-simple;4.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.jopt-simple#jopt-simple;5.0.3 {optional=[compile(), master()]} ⇒ dependency: net.sf.jopt-simple#jopt-simple;4.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.jopt-simple#jopt-simple;5.0.3 {optional=[compile(), master()]} ⇒ dependency: net.sf.jopt-simple#jopt-simple;4.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.jopt-simple#jopt-simple;5.0.3 {optional=[compile(), master()]} ⇒ dependency: net.sf.jopt-simple#jopt-simple;4.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
loadData of commons-logging#commons-logging;1.2 of rootConf=default
using downloadGrapes to resolve commons-logging#commons-logging;1.2
downloadGrapes: Checking cache for: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/commons-logging/commons-logging/ivy-1.2.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for commons-logging#commons-logging;1.2 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/commons-logging/commons-logging/ivy-1.2.xml
downloadGrapes: module revision found in cache: commons-logging#commons-logging;1.2
found commons-logging#commons-logging;1.2 in localm2
== resolving dependencies org.springframework#spring-core;4.3.18.RELEASE→commons-logging#commons-logging;1.2 [runtime→compile]
loadData of commons-logging#commons-logging;1.2 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework#spring-core;4.3.18.RELEASE→commons-logging#commons-logging;1.2 [runtime→master()]
loadData of commons-logging#commons-logging;1.2 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework#spring-core;4.3.18.RELEASE→commons-logging#commons-logging;1.2 [runtime→compile()]
loadData of commons-logging#commons-logging;1.2 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot;1.5.14.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot;1.5.14.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.apache.commons#commons-pool2;2.4.2 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-pool2;2.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
== resolving dependencies org.springframework#spring-aop;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework#spring-aop;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework#spring-beans;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-beans;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-aop;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-aop;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework#spring-expression;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-expression;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→ch.qos.logback#logback-classic;1.1.11 [runtime→runtime()]
loadData of ch.qos.logback#logback-classic;1.1.11 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→ch.qos.logback#logback-classic;1.1.11 [runtime→compile]
loadData of ch.qos.logback#logback-classic;1.1.11 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#log4j-over-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#log4j-over-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#jul-to-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#jul-to-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.h2database#h2;1.2.132 {test=[runtime(), master()]} ⇒ dependency: com.h2database#h2;1.4.197 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.9 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.0 {optional=[compile(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;1.7.1 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
== resolving dependencies ch.qos.logback#logback-classic;1.1.11→ch.qos.logback#logback-core;1.1.11 [runtime→runtime()]
loadData of ch.qos.logback#logback-core;1.1.11 of rootConf=default
== resolving dependencies ch.qos.logback#logback-classic;1.1.11→ch.qos.logback#logback-core;1.1.11 [runtime→compile]
loadData of ch.qos.logback#logback-core;1.1.11 of rootConf=default
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.2 {test=[runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;1.7.1 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
== resolving dependencies ch.qos.logback#logback-classic;1.1.11→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
== resolving dependencies ch.qos.logback#logback-classic;1.1.11→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→org.slf4j#jcl-over-slf4j;1.7.25 [runtime→runtime()]
loadData of org.slf4j#jcl-over-slf4j;1.7.25 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→org.slf4j#jcl-over-slf4j;1.7.25 [runtime→compile]
loadData of org.slf4j#jcl-over-slf4j;1.7.25 of rootConf=default
== resolving dependencies org.slf4j#jcl-over-slf4j;1.7.25→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.slf4j#jcl-over-slf4j;1.7.25→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→org.slf4j#jul-to-slf4j;1.7.25 [runtime→runtime()]
loadData of org.slf4j#jul-to-slf4j;1.7.25 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→org.slf4j#jul-to-slf4j;1.7.25 [runtime→compile]
loadData of org.slf4j#jul-to-slf4j;1.7.25 of rootConf=default
== resolving dependencies org.slf4j#jul-to-slf4j;1.7.25→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.slf4j#jul-to-slf4j;1.7.25→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→org.slf4j#log4j-over-slf4j;1.7.25 [runtime→runtime()]
loadData of org.slf4j#log4j-over-slf4j;1.7.25 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→org.slf4j#log4j-over-slf4j;1.7.25 [runtime→compile]
loadData of org.slf4j#log4j-over-slf4j;1.7.25 of rootConf=default
== resolving dependencies org.slf4j#log4j-over-slf4j;1.7.25→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.slf4j#log4j-over-slf4j;1.7.25→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.yaml#snakeyaml;1.17 [runtime→master()]
loadData of org.yaml#snakeyaml;1.17 of rootConf=default
using downloadGrapes to resolve org.yaml#snakeyaml;1.17
downloadGrapes: Checking cache for: dependency: org.yaml#snakeyaml;1.17 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.yaml/snakeyaml/ivy-1.17.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.yaml#snakeyaml;1.17 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.yaml/snakeyaml/ivy-1.17.xml
downloadGrapes: module revision found in cache: org.yaml#snakeyaml;1.17
found org.yaml#snakeyaml;1.17 in localm2
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {test=[runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.yaml#snakeyaml;1.17 [runtime→runtime()]
loadData of org.yaml#snakeyaml;1.17 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.yaml#snakeyaml;1.17 [runtime→compile]
loadData of org.yaml#snakeyaml;1.17 of rootConf=default
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {test=[runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {test=[runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.yaml#snakeyaml;1.17 [runtime→compile()]
loadData of org.yaml#snakeyaml;1.17 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-core;8.5.31 [runtime→runtime()]
loadData of org.apache.tomcat.embed#tomcat-embed-core;8.5.31 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-core;8.5.31 [runtime→compile]
loadData of org.apache.tomcat.embed#tomcat-embed-core;8.5.31 of rootConf=default
== resolving dependencies org.apache.tomcat.embed#tomcat-embed-core;8.5.31→org.apache.tomcat#tomcat-annotations-api;8.5.31 [runtime→runtime()]
loadData of org.apache.tomcat#tomcat-annotations-api;8.5.31 of rootConf=default
== resolving dependencies org.apache.tomcat.embed#tomcat-embed-core;8.5.31→org.apache.tomcat#tomcat-annotations-api;8.5.31 [runtime→compile]
loadData of org.apache.tomcat#tomcat-annotations-api;8.5.31 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-el;8.5.31 [runtime→runtime()]
loadData of org.apache.tomcat.embed#tomcat-embed-el;8.5.31 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-el;8.5.31 [runtime→compile]
loadData of org.apache.tomcat.embed#tomcat-embed-el;8.5.31 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 [runtime→runtime()]
loadData of org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 [runtime→compile]
loadData of org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 of rootConf=default
== resolving dependencies org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31→org.apache.tomcat.embed#tomcat-embed-core;8.5.31 [runtime→runtime()]
loadData of org.apache.tomcat.embed#tomcat-embed-core;8.5.31 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31→org.apache.tomcat.embed#tomcat-embed-core;8.5.31 [runtime→compile]
loadData of org.apache.tomcat.embed#tomcat-embed-core;8.5.31 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.hibernate#hibernate-validator;5.3.6.Final [runtime→runtime()]
loadData of org.hibernate#hibernate-validator;5.3.6.Final of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.hibernate#hibernate-validator;5.3.6.Final [runtime→compile]
loadData of org.hibernate#hibernate-validator;5.3.6.Final of rootConf=default
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
== resolving dependencies org.hibernate#hibernate-validator;5.3.6.Final→javax.validation#validation-api;1.1.0.Final [runtime→runtime()]
loadData of javax.validation#validation-api;1.1.0.Final of rootConf=default
== resolving dependencies org.hibernate#hibernate-validator;5.3.6.Final→javax.validation#validation-api;1.1.0.Final [runtime→compile]
loadData of javax.validation#validation-api;1.1.0.Final of rootConf=default
== resolving dependencies org.hibernate#hibernate-validator;5.3.6.Final→org.jboss.logging#jboss-logging;3.3.2.Final [runtime→runtime()]
loadData of org.jboss.logging#jboss-logging;3.3.2.Final of rootConf=default
== resolving dependencies org.hibernate#hibernate-validator;5.3.6.Final→org.jboss.logging#jboss-logging;3.3.2.Final [runtime→compile]
loadData of org.jboss.logging#jboss-logging;3.3.2.Final of rootConf=default
dependency descriptor has been mediated: dependency: log4j#log4j;1.2.16 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: log4j#log4j;1.2.17 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.logging.log4j#log4j-api;2.0 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.apache.logging.log4j#log4j-api;2.7 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.2 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {provided=[compile(), provided(), runtime(), master()]}
== resolving dependencies org.hibernate#hibernate-validator;5.3.6.Final→com.fasterxml#classmate;1.3.4 [runtime→runtime()]
loadData of com.fasterxml#classmate;1.3.4 of rootConf=default
== resolving dependencies org.hibernate#hibernate-validator;5.3.6.Final→com.fasterxml#classmate;1.3.4 [runtime→compile]
loadData of com.fasterxml#classmate;1.3.4 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.10 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.fasterxml.jackson.core#jackson-databind;2.8.11.2→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
== resolving dependencies com.fasterxml.jackson.core#jackson-databind;2.8.11.2→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
== resolving dependencies com.fasterxml.jackson.core#jackson-databind;2.8.11.2→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
== resolving dependencies com.fasterxml.jackson.core#jackson-databind;2.8.11.2→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework#spring-webmvc;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-webmvc;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework#spring-webmvc;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-webmvc;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-vault-config-rabbitmq/ivy-1.1.1.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-vault-config-rabbitmq/ivy-1.1.1.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE
found org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE in jcenter
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-vault-config/ivy-1.1.1.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-vault-config/ivy-1.1.1.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE
found org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE in jcenter
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-commons/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-commons/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE in localm2
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.6.0 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.6.0 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]} in compile
== resolving dependencies org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE→org.springframework.security#spring-security-crypto;4.2.7.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.6.0 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.6.0 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.6.0 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.6.0 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
loadData of org.springframework.security#spring-security-crypto;4.2.7.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.security#spring-security-crypto;4.2.7.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.security/spring-security-crypto/ivy-4.2.7.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.security#spring-security-crypto;4.2.7.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.security/spring-security-crypto/ivy-4.2.7.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.security#spring-security-crypto;4.2.7.RELEASE
found org.springframework.security#spring-security-crypto;4.2.7.RELEASE in localm2
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE→org.springframework.security#spring-security-crypto;4.2.7.RELEASE [compile→compile()]
loadData of org.springframework.security#spring-security-crypto;4.2.7.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.6.0 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]} in runtime
== resolving dependencies org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE→org.springframework.security#spring-security-crypto;4.2.7.RELEASE [runtime→runtime()]
loadData of org.springframework.security#spring-security-crypto;4.2.7.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE→org.springframework.security#spring-security-crypto;4.2.7.RELEASE [runtime→compile]
loadData of org.springframework.security#spring-security-crypto;4.2.7.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-context/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-context/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE→org.springframework.security#spring-security-crypto;4.2.7.RELEASE [compile→master()]
loadData of org.springframework.security#spring-security-crypto;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE→org.springframework.security#spring-security-crypto;4.2.7.RELEASE [compile→compile()]
loadData of org.springframework.security#spring-security-crypto;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE→org.springframework.security#spring-security-crypto;4.2.7.RELEASE [runtime→runtime()]
loadData of org.springframework.security#spring-security-crypto;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE→org.springframework.security#spring-security-crypto;4.2.7.RELEASE [runtime→compile]
loadData of org.springframework.security#spring-security-crypto;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.vault#spring-vault-core;1.1.2.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
loadData of org.springframework.vault#spring-vault-core;1.1.2.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.vault#spring-vault-core;1.1.2.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.vault#spring-vault-core;1.1.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.vault/spring-vault-core/ivy-1.1.2.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.vault#spring-vault-core;1.1.2.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.vault/spring-vault-core/ivy-1.1.2.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.vault#spring-vault-core;1.1.2.RELEASE
found org.springframework.vault#spring-vault-core;1.1.2.RELEASE in jcenter
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.22.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.10.0 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.4.0 {test=[runtime(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.10 {optional=[compile(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-jcl;1.7.16 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-jcl;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.vault#spring-vault-core;1.1.2.RELEASE [compile→compile()]
loadData of org.springframework.vault#spring-vault-core;1.1.2.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.22.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.10.0 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.4.0 {test=[runtime(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.10 {optional=[compile(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-jcl;1.7.16 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-jcl;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.springframework.vault#spring-vault-core;1.1.2.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.22.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.10.0 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.4.0 {test=[runtime(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.10 {optional=[compile(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-jcl;1.7.16 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-jcl;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.22.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.10.0 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.4.0 {test=[runtime(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.10 {optional=[compile(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-jcl;1.7.16 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-jcl;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.22.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.10.0 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.4.0 {test=[runtime(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.10 {optional=[compile(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-jcl;1.7.16 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-jcl;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.22.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.10.0 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.4.0 {test=[runtime(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.10 {optional=[compile(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-jcl;1.7.16 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-jcl;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.22.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.10.0 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.4.0 {test=[runtime(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.10 {optional=[compile(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-jcl;1.7.16 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-jcl;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.vault#spring-vault-core;1.1.2.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.vault#spring-vault-core;1.1.2.RELEASE [compile→runtime()]
loadData of org.springframework.vault#spring-vault-core;1.1.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.vault#spring-vault-core;1.1.2.RELEASE [compile→compile]
loadData of org.springframework.vault#spring-vault-core;1.1.2.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in runtime
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in runtime
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in runtime
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.22.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.10.0 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.4.0 {test=[runtime(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.10 {optional=[compile(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-jcl;1.7.16 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-jcl;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.springframework.vault#spring-vault-core;1.1.2.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.vault#spring-vault-core;1.1.2.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [compile→default]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [compile→runtime]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.vault#spring-vault-core;1.1.2.RELEASE [runtime→runtime()]
loadData of org.springframework.vault#spring-vault-core;1.1.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.vault#spring-vault-core;1.1.2.RELEASE [runtime→compile]
loadData of org.springframework.vault#spring-vault-core;1.1.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [compile→master]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-vault-config-consul/ivy-1.1.1.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-vault-config-consul/ivy-1.1.1.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE
found org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE in jcenter
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-vault-config-databases/ivy-1.1.1.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-vault-config-databases/ivy-1.1.1.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE
found org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE in jcenter
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {test=[runtime(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.40 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {test=[runtime(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.40 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {test=[runtime(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.40 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {test=[runtime(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.40 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-vault-config-aws/ivy-1.1.1.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-vault-config-aws/ivy-1.1.1.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE
found org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE in jcenter
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-contract-stub-runner/ivy-1.2.5.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-contract-stub-runner/ivy-1.2.5.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE
found org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE in jcenter
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-contract-verifier/ivy-1.2.5.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-contract-verifier/ivy-1.2.5.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE
found org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-contract-spec/ivy-1.2.5.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-contract-spec/ivy-1.2.5.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE
found org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.codehaus.groovy#groovy;2.4.15 [compile→master()]
loadData of org.codehaus.groovy#groovy;2.4.15 of rootConf=default
using downloadGrapes to resolve org.codehaus.groovy#groovy;2.4.15
downloadGrapes: Checking cache for: dependency: org.codehaus.groovy#groovy;2.4.15 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.codehaus.groovy/groovy/ivy-2.4.15.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.codehaus.groovy#groovy;2.4.15 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.codehaus.groovy/groovy/ivy-2.4.15.xml
downloadGrapes: module revision found in cache: org.codehaus.groovy#groovy;2.4.15
found org.codehaus.groovy#groovy;2.4.15 in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.codehaus.groovy#groovy;2.4.15 [compile→compile()]
loadData of org.codehaus.groovy#groovy;2.4.15 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.codehaus.groovy#groovy-nio;2.4.15 [compile→master()]
loadData of org.codehaus.groovy#groovy-nio;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.codehaus.groovy#groovy-nio;2.4.15 [compile→compile()]
loadData of org.codehaus.groovy#groovy-nio;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.codehaus.groovy#groovy-json;2.4.15 [compile→master()]
loadData of org.codehaus.groovy#groovy-json;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.codehaus.groovy#groovy-json;2.4.15 [compile→compile()]
loadData of org.codehaus.groovy#groovy-json;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.codehaus.groovy#groovy-xml;2.4.15 [compile→master()]
loadData of org.codehaus.groovy#groovy-xml;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.codehaus.groovy#groovy-xml;2.4.15 [compile→compile()]
loadData of org.codehaus.groovy#groovy-xml;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→dk.brics.automaton#automaton;1.11-8 [compile→master()]
loadData of dk.brics.automaton#automaton;1.11-8 of rootConf=default
using downloadGrapes to resolve dk.brics.automaton#automaton;1.11-8
downloadGrapes: Checking cache for: dependency: dk.brics.automaton#automaton;1.11-8 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/dk.brics.automaton/automaton/ivy-1.11-8.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for dk.brics.automaton#automaton;1.11-8 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/dk.brics.automaton/automaton/ivy-1.11-8.xml
downloadGrapes: module revision found in cache: dk.brics.automaton#automaton;1.11-8
found dk.brics.automaton#automaton;1.11-8 in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→dk.brics.automaton#automaton;1.11-8 [compile→compile()]
loadData of dk.brics.automaton#automaton;1.11-8 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.apache.commons#commons-text;1.1 [compile→master()]
loadData of org.apache.commons#commons-text;1.1 of rootConf=default
using downloadGrapes to resolve org.apache.commons#commons-text;1.1
downloadGrapes: Checking cache for: dependency: org.apache.commons#commons-text;1.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.commons/commons-text/ivy-1.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.apache.commons#commons-text;1.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.commons/commons-text/ivy-1.1.xml
downloadGrapes: module revision found in cache: org.apache.commons#commons-text;1.1
found org.apache.commons#commons-text;1.1 in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.apache.commons#commons-text;1.1 [compile→compile()]
loadData of org.apache.commons#commons-text;1.1 of rootConf=default
== resolving dependencies org.apache.commons#commons-text;1.1→org.apache.commons#commons-lang3;3.5 [compile→master()]
loadData of org.apache.commons#commons-lang3;3.5 of rootConf=default
using downloadGrapes to resolve org.apache.commons#commons-lang3;3.5
downloadGrapes: Checking cache for: dependency: org.apache.commons#commons-lang3;3.5 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.commons/commons-lang3/ivy-3.5.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.apache.commons#commons-lang3;3.5 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.commons/commons-lang3/ivy-3.5.xml
downloadGrapes: module revision found in cache: org.apache.commons#commons-lang3;3.5
found org.apache.commons#commons-lang3;3.5 in localm2
== resolving dependencies org.apache.commons#commons-text;1.1→org.apache.commons#commons-lang3;3.5 [compile→compile()]
loadData of org.apache.commons#commons-lang3;3.5 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.slf4j#slf4j-api;1.7.25 [compile→master()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.codehaus.groovy#groovy;2.4.15 [runtime→runtime()]
loadData of org.codehaus.groovy#groovy;2.4.15 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.codehaus.groovy#groovy;2.4.15 [runtime→compile]
loadData of org.codehaus.groovy#groovy;2.4.15 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.codehaus.groovy#groovy-nio;2.4.15 [runtime→runtime()]
loadData of org.codehaus.groovy#groovy-nio;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.codehaus.groovy#groovy-json;2.4.15 [runtime→runtime()]
loadData of org.codehaus.groovy#groovy-json;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.codehaus.groovy#groovy-xml;2.4.15 [runtime→runtime()]
loadData of org.codehaus.groovy#groovy-xml;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→dk.brics.automaton#automaton;1.11-8 [runtime→runtime()]
loadData of dk.brics.automaton#automaton;1.11-8 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→dk.brics.automaton#automaton;1.11-8 [runtime→compile]
loadData of dk.brics.automaton#automaton;1.11-8 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.apache.commons#commons-text;1.1 [runtime→runtime()]
loadData of org.apache.commons#commons-text;1.1 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.apache.commons#commons-text;1.1 [runtime→compile]
loadData of org.apache.commons#commons-text;1.1 of rootConf=default
== resolving dependencies org.apache.commons#commons-text;1.1→org.apache.commons#commons-lang3;3.5 [runtime→runtime()]
loadData of org.apache.commons#commons-lang3;3.5 of rootConf=default
== resolving dependencies org.apache.commons#commons-text;1.1→org.apache.commons#commons-lang3;3.5 [runtime→compile]
loadData of org.apache.commons#commons-lang3;3.5 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-test-autoconfigure/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-test-autoconfigure/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE
found org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE→org.springframework.boot#spring-boot-test;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-test;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-test;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-test/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.boot#spring-boot-test;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-test/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-test;1.5.14.RELEASE
found org.springframework.boot#spring-boot-test;1.5.14.RELEASE in localm2
== resolving dependencies org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE→org.springframework.boot#spring-boot-test;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-test;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-test;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-test;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→master()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→javax.inject#javax.inject;1 [compile→master()]
loadData of javax.inject#javax.inject;1 of rootConf=default
using downloadGrapes to resolve javax.inject#javax.inject;1
downloadGrapes: Checking cache for: dependency: javax.inject#javax.inject;1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/javax.inject/javax.inject/ivy-1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for javax.inject#javax.inject;1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/javax.inject/javax.inject/ivy-1.xml
downloadGrapes: module revision found in cache: javax.inject#javax.inject;1
found javax.inject#javax.inject;1 in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→javax.inject#javax.inject;1 [compile→compile()]
loadData of javax.inject#javax.inject;1 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.slf4j#slf4j-api;1.7.25 [compile→master()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.github.tomakehurst#wiremock-standalone;2.16.0 [compile→master()]
loadData of com.github.tomakehurst#wiremock-standalone;2.16.0 of rootConf=default
using downloadGrapes to resolve com.github.tomakehurst#wiremock-standalone;2.16.0
downloadGrapes: Checking cache for: dependency: com.github.tomakehurst#wiremock-standalone;2.16.0 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.github.tomakehurst/wiremock-standalone/ivy-2.16.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.github.tomakehurst#wiremock-standalone;2.16.0 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.github.tomakehurst/wiremock-standalone/ivy-2.16.0.xml
downloadGrapes: module revision found in cache: com.github.tomakehurst#wiremock-standalone;2.16.0
found com.github.tomakehurst#wiremock-standalone;2.16.0 in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.github.tomakehurst#wiremock-standalone;2.16.0 [compile→compile()]
loadData of com.github.tomakehurst#wiremock-standalone;2.16.0 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.toomuchcoding.jsonassert#jsonassert;0.4.12 [compile→master()]
loadData of com.toomuchcoding.jsonassert#jsonassert;0.4.12 of rootConf=default
using downloadGrapes to resolve com.toomuchcoding.jsonassert#jsonassert;0.4.12
downloadGrapes: Checking cache for: dependency: com.toomuchcoding.jsonassert#jsonassert;0.4.12 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.toomuchcoding.jsonassert/jsonassert/ivy-0.4.12.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.toomuchcoding.jsonassert#jsonassert;0.4.12 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.toomuchcoding.jsonassert/jsonassert/ivy-0.4.12.xml
downloadGrapes: module revision found in cache: com.toomuchcoding.jsonassert#jsonassert;0.4.12
found com.toomuchcoding.jsonassert#jsonassert;0.4.12 in localm2
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.toomuchcoding.jsonassert#jsonassert;0.4.12 [compile→compile()]
loadData of com.toomuchcoding.jsonassert#jsonassert;0.4.12 of rootConf=default
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies com.toomuchcoding.jsonassert#jsonassert;0.4.12→com.jayway.jsonpath#json-path;2.2.0 [compile→master()]
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
loadData of com.jayway.jsonpath#json-path;2.2.0 of rootConf=default
using downloadGrapes to resolve com.jayway.jsonpath#json-path;2.2.0
downloadGrapes: Checking cache for: dependency: com.jayway.jsonpath#json-path;2.2.0 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.jayway.jsonpath/json-path/ivy-2.2.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.jayway.jsonpath#json-path;2.2.0 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.jayway.jsonpath/json-path/ivy-2.2.0.xml
downloadGrapes: module revision found in cache: com.jayway.jsonpath#json-path;2.2.0
found com.jayway.jsonpath#json-path;2.2.0 in localm2
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.toomuchcoding.jsonassert#jsonassert;0.4.12→com.jayway.jsonpath#json-path;2.2.0 [compile→compile()]
loadData of com.jayway.jsonpath#json-path;2.2.0 of rootConf=default
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.jayway.jsonpath#json-path;2.2.0→net.minidev#json-smart;2.2.1 [compile→master()]
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
loadData of net.minidev#json-smart;2.2.1 of rootConf=default
using downloadGrapes to resolve net.minidev#json-smart;2.2.1
downloadGrapes: Checking cache for: dependency: net.minidev#json-smart;2.2.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/net.minidev/json-smart/ivy-2.2.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for net.minidev#json-smart;2.2.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/net.minidev/json-smart/ivy-2.2.1.xml
downloadGrapes: module revision found in cache: net.minidev#json-smart;2.2.1
found net.minidev#json-smart;2.2.1 in localm2
== resolving dependencies com.jayway.jsonpath#json-path;2.2.0→net.minidev#json-smart;2.2.1 [compile→compile()]
loadData of net.minidev#json-smart;2.2.1 of rootConf=default
== resolving dependencies net.minidev#json-smart;2.2.1→net.minidev#accessors-smart;1.1 [compile→master()]
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
loadData of net.minidev#accessors-smart;1.1 of rootConf=default
using downloadGrapes to resolve net.minidev#accessors-smart;1.1
downloadGrapes: Checking cache for: dependency: net.minidev#accessors-smart;1.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/net.minidev/accessors-smart/ivy-1.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for net.minidev#accessors-smart;1.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/net.minidev/accessors-smart/ivy-1.1.xml
downloadGrapes: module revision found in cache: net.minidev#accessors-smart;1.1
found net.minidev#accessors-smart;1.1 in localm2
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies net.minidev#json-smart;2.2.1→net.minidev#accessors-smart;1.1 [compile→compile()]
loadData of net.minidev#accessors-smart;1.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies net.minidev#accessors-smart;1.1→org.ow2.asm#asm;5.0.3 [compile→master()]
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
loadData of org.ow2.asm#asm;5.0.3 of rootConf=default
using downloadGrapes to resolve org.ow2.asm#asm;5.0.3
downloadGrapes: Checking cache for: dependency: org.ow2.asm#asm;5.0.3 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.ow2.asm/asm/ivy-5.0.3.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.ow2.asm#asm;5.0.3 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.ow2.asm/asm/ivy-5.0.3.xml
downloadGrapes: module revision found in cache: org.ow2.asm#asm;5.0.3
found org.ow2.asm#asm;5.0.3 in localm2
== resolving dependencies net.minidev#accessors-smart;1.1→org.ow2.asm#asm;5.0.3 [compile→compile()]
loadData of org.ow2.asm#asm;5.0.3 of rootConf=default
== resolving dependencies com.jayway.jsonpath#json-path;2.2.0→org.slf4j#slf4j-api;1.7.25 [compile→master()]
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.jayway.jsonpath#json-path;2.2.0→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.codehaus.groovy#groovy;2.4.15 [compile→master()]
loadData of org.codehaus.groovy#groovy;2.4.15 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.codehaus.groovy#groovy;2.4.15 [compile→compile()]
loadData of org.codehaus.groovy#groovy;2.4.15 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.codehaus.groovy#groovy-nio;2.4.15 [compile→master()]
loadData of org.codehaus.groovy#groovy-nio;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.codehaus.groovy#groovy-nio;2.4.15 [compile→compile()]
loadData of org.codehaus.groovy#groovy-nio;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.codehaus.groovy#groovy-json;2.4.15 [compile→master()]
loadData of org.codehaus.groovy#groovy-json;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.codehaus.groovy#groovy-json;2.4.15 [compile→compile()]
loadData of org.codehaus.groovy#groovy-json;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.codehaus.groovy#groovy-xml;2.4.15 [compile→master()]
loadData of org.codehaus.groovy#groovy-xml;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.codehaus.groovy#groovy-xml;2.4.15 [compile→compile()]
loadData of org.codehaus.groovy#groovy-xml;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.skyscreamer#jsonassert;1.4.0 [compile→master()]
loadData of org.skyscreamer#jsonassert;1.4.0 of rootConf=default
using downloadGrapes to resolve org.skyscreamer#jsonassert;1.4.0
downloadGrapes: Checking cache for: dependency: org.skyscreamer#jsonassert;1.4.0 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.skyscreamer/jsonassert/ivy-1.4.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.skyscreamer#jsonassert;1.4.0 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.skyscreamer/jsonassert/ivy-1.4.0.xml
downloadGrapes: module revision found in cache: org.skyscreamer#jsonassert;1.4.0
found org.skyscreamer#jsonassert;1.4.0 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.skyscreamer#jsonassert;1.4.0 [compile→compile()]
loadData of org.skyscreamer#jsonassert;1.4.0 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.skyscreamer#jsonassert;1.4.0→com.vaadin.external.google#android-json;0.0.20131108.vaadin1 [compile→master()]
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.vaadin.external.google#android-json;0.0.20131108.vaadin1 of rootConf=default
using downloadGrapes to resolve com.vaadin.external.google#android-json;0.0.20131108.vaadin1
downloadGrapes: Checking cache for: dependency: com.vaadin.external.google#android-json;0.0.20131108.vaadin1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.vaadin.external.google/android-json/ivy-0.0.20131108.vaadin1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.vaadin.external.google#android-json;0.0.20131108.vaadin1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.vaadin.external.google/android-json/ivy-0.0.20131108.vaadin1.xml
downloadGrapes: module revision found in cache: com.vaadin.external.google#android-json;0.0.20131108.vaadin1
found com.vaadin.external.google#android-json;0.0.20131108.vaadin1 in localm2
== resolving dependencies org.skyscreamer#jsonassert;1.4.0→com.vaadin.external.google#android-json;0.0.20131108.vaadin1 [compile→compile()]
loadData of com.vaadin.external.google#android-json;0.0.20131108.vaadin1 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.github.jknack#handlebars;4.0.6 [compile→master()]
loadData of com.github.jknack#handlebars;4.0.6 of rootConf=default
using downloadGrapes to resolve com.github.jknack#handlebars;4.0.6
downloadGrapes: Checking cache for: dependency: com.github.jknack#handlebars;4.0.6 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.github.jknack/handlebars/ivy-4.0.6.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.github.jknack#handlebars;4.0.6 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.github.jknack/handlebars/ivy-4.0.6.xml
downloadGrapes: module revision found in cache: com.github.jknack#handlebars;4.0.6
found com.github.jknack#handlebars;4.0.6 in localm2
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.github.jknack#handlebars;4.0.6 [compile→compile()]
loadData of com.github.jknack#handlebars;4.0.6 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.apache.commons#commons-lang3;3.1 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
loadData of org.apache.commons#commons-lang3;3.1 of rootConf=default
default is evicted. Skip loading
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.apache.commons#commons-lang3;3.5 [compile→master()]
loadData of org.apache.commons#commons-lang3;3.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.apache.commons#commons-lang3;3.1 [compile→compile()]
loadData of org.apache.commons#commons-lang3;3.1 of rootConf=default
default is evicted. Skip loading
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.apache.commons#commons-lang3;3.5 [compile→compile()]
loadData of org.apache.commons#commons-lang3;3.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.antlr#antlr4-runtime;4.5.1-1 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
loadData of org.antlr#antlr4-runtime;4.5.1-1 of rootConf=default
using downloadGrapes to resolve org.antlr#antlr4-runtime;4.5.1-1
downloadGrapes: Checking cache for: dependency: org.antlr#antlr4-runtime;4.5.1-1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.antlr/antlr4-runtime/ivy-4.5.1-1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.antlr#antlr4-runtime;4.5.1-1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.antlr/antlr4-runtime/ivy-4.5.1-1.xml
downloadGrapes: module revision found in cache: org.antlr#antlr4-runtime;4.5.1-1
found org.antlr#antlr4-runtime;4.5.1-1 in localm2
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.antlr#antlr4-runtime;4.5.1-1 [compile→compile()]
loadData of org.antlr#antlr4-runtime;4.5.1-1 of rootConf=default
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.mozilla#rhino;1.7R4 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
loadData of org.mozilla#rhino;1.7R4 of rootConf=default
using downloadGrapes to resolve org.mozilla#rhino;1.7R4
downloadGrapes: Checking cache for: dependency: org.mozilla#rhino;1.7R4 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.mozilla/rhino/ivy-1.7R4.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.mozilla#rhino;1.7R4 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.mozilla/rhino/ivy-1.7R4.xml
downloadGrapes: module revision found in cache: org.mozilla#rhino;1.7R4
found org.mozilla#rhino;1.7R4 in localm2
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.mozilla#rhino;1.7R4 [compile→compile()]
loadData of org.mozilla#rhino;1.7R4 of rootConf=default
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.slf4j#slf4j-api;1.7.25 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→commons-beanutils#commons-beanutils;1.9.3 [compile→master()]
loadData of commons-beanutils#commons-beanutils;1.9.3 of rootConf=default
using downloadGrapes to resolve commons-beanutils#commons-beanutils;1.9.3
downloadGrapes: Checking cache for: dependency: commons-beanutils#commons-beanutils;1.9.3 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/commons-beanutils/commons-beanutils/ivy-1.9.3.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for commons-beanutils#commons-beanutils;1.9.3 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/commons-beanutils/commons-beanutils/ivy-1.9.3.xml
downloadGrapes: module revision found in cache: commons-beanutils#commons-beanutils;1.9.3
found commons-beanutils#commons-beanutils;1.9.3 in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→commons-beanutils#commons-beanutils;1.9.3 [compile→compile()]
loadData of commons-beanutils#commons-beanutils;1.9.3 of rootConf=default
excluding dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} in compile
== resolving dependencies commons-beanutils#commons-beanutils;1.9.3→commons-collections#commons-collections;3.2.2 [compile→master()]
excluding dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} in compile
loadData of commons-collections#commons-collections;3.2.2 of rootConf=default
using downloadGrapes to resolve commons-collections#commons-collections;3.2.2
downloadGrapes: Checking cache for: dependency: commons-collections#commons-collections;3.2.2 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/commons-collections/commons-collections/ivy-3.2.2.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for commons-collections#commons-collections;3.2.2 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/commons-collections/commons-collections/ivy-3.2.2.xml
downloadGrapes: module revision found in cache: commons-collections#commons-collections;3.2.2
found commons-collections#commons-collections;3.2.2 in localm2
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies commons-beanutils#commons-beanutils;1.9.3→commons-collections#commons-collections;3.2.2 [compile→compile()]
loadData of commons-collections#commons-collections;3.2.2 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.yaml#snakeyaml;1.17 [compile→master()]
loadData of org.yaml#snakeyaml;1.17 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.yaml#snakeyaml;1.17 [compile→compile()]
loadData of org.yaml#snakeyaml;1.17 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-test/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-test/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
found org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework.boot#spring-boot-test;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-test;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework.boot#spring-boot-test;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-test;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→com.jayway.jsonpath#json-path;2.2.0 [compile→master()]
loadData of com.jayway.jsonpath#json-path;2.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→com.jayway.jsonpath#json-path;2.2.0 [compile→compile()]
loadData of com.jayway.jsonpath#json-path;2.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→junit#junit;4.12 [compile→master()]
loadData of junit#junit;4.12 of rootConf=default
using downloadGrapes to resolve junit#junit;4.12
downloadGrapes: Checking cache for: dependency: junit#junit;4.12 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/junit/junit/ivy-4.12.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for junit#junit;4.12 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/junit/junit/ivy-4.12.xml
downloadGrapes: module revision found in cache: junit#junit;4.12
found junit#junit;4.12 in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→junit#junit;4.12 [compile→compile()]
loadData of junit#junit;4.12 of rootConf=default
== resolving dependencies junit#junit;4.12→org.hamcrest#hamcrest-core;1.3 [compile→master()]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
using downloadGrapes to resolve org.hamcrest#hamcrest-core;1.3
downloadGrapes: Checking cache for: dependency: org.hamcrest#hamcrest-core;1.3 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.hamcrest/hamcrest-core/ivy-1.3.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.hamcrest#hamcrest-core;1.3 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.hamcrest/hamcrest-core/ivy-1.3.xml
downloadGrapes: module revision found in cache: org.hamcrest#hamcrest-core;1.3
found org.hamcrest#hamcrest-core;1.3 in localm2
== resolving dependencies junit#junit;4.12→org.hamcrest#hamcrest-core;1.3 [compile→compile()]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→junit#junit;4.12 [compile→runtime()]
loadData of junit#junit;4.12 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→junit#junit;4.12 [compile→compile]
loadData of junit#junit;4.12 of rootConf=default
== resolving dependencies junit#junit;4.12→org.hamcrest#hamcrest-core;1.3 [runtime→runtime()]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
== resolving dependencies junit#junit;4.12→org.hamcrest#hamcrest-core;1.3 [runtime→compile]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.assertj#assertj-core;2.6.0 [compile→master()]
loadData of org.assertj#assertj-core;2.6.0 of rootConf=default
using downloadGrapes to resolve org.assertj#assertj-core;2.6.0
downloadGrapes: Checking cache for: dependency: org.assertj#assertj-core;2.6.0 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.assertj/assertj-core/ivy-2.6.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.assertj#assertj-core;2.6.0 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.assertj/assertj-core/ivy-2.6.0.xml
downloadGrapes: module revision found in cache: org.assertj#assertj-core;2.6.0
found org.assertj#assertj-core;2.6.0 in localm2
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.2.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.assertj#assertj-core;2.6.0 [compile→compile()]
loadData of org.assertj#assertj-core;2.6.0 of rootConf=default
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.2.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.mockito#mockito-core;1.10.19 [compile→master()]
loadData of org.mockito#mockito-core;1.10.19 of rootConf=default
using downloadGrapes to resolve org.mockito#mockito-core;1.10.19
downloadGrapes: Checking cache for: dependency: org.mockito#mockito-core;1.10.19 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.mockito/mockito-core/ivy-1.10.19.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.mockito#mockito-core;1.10.19 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.mockito/mockito-core/ivy-1.10.19.xml
downloadGrapes: module revision found in cache: org.mockito#mockito-core;1.10.19
found org.mockito#mockito-core;1.10.19 in localm2
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.mockito#mockito-core;1.10.19 [compile→compile()]
loadData of org.mockito#mockito-core;1.10.19 of rootConf=default
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.hamcrest#hamcrest-core;1.3 [compile→master()]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.hamcrest#hamcrest-core;1.3 [compile→compile()]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.hamcrest#hamcrest-library;1.3 [compile→master()]
loadData of org.hamcrest#hamcrest-library;1.3 of rootConf=default
using downloadGrapes to resolve org.hamcrest#hamcrest-library;1.3
downloadGrapes: Checking cache for: dependency: org.hamcrest#hamcrest-library;1.3 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.hamcrest/hamcrest-library/ivy-1.3.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.hamcrest#hamcrest-library;1.3 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.hamcrest/hamcrest-library/ivy-1.3.xml
downloadGrapes: module revision found in cache: org.hamcrest#hamcrest-library;1.3
found org.hamcrest#hamcrest-library;1.3 in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.hamcrest#hamcrest-library;1.3 [compile→compile()]
loadData of org.hamcrest#hamcrest-library;1.3 of rootConf=default
== resolving dependencies org.hamcrest#hamcrest-library;1.3→org.hamcrest#hamcrest-core;1.3 [compile→master()]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.hamcrest#hamcrest-library;1.3→org.hamcrest#hamcrest-core;1.3 [compile→compile()]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.skyscreamer#jsonassert;1.4.0 [compile→master()]
loadData of org.skyscreamer#jsonassert;1.4.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.skyscreamer#jsonassert;1.4.0 [compile→compile()]
loadData of org.skyscreamer#jsonassert;1.4.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework#spring-test;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-test;4.3.18.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework#spring-test;4.3.18.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework#spring-test;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-test/ivy-4.3.18.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework#spring-test;4.3.18.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-test/ivy-4.3.18.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework#spring-test;4.3.18.RELEASE
found org.springframework#spring-test;4.3.18.RELEASE in localm2
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.3.0 {optional=[compile(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sourceforge.htmlunit#htmlunit;2.23 {optional=[compile(), master()]} ⇒ dependency: net.sourceforge.htmlunit#htmlunit;2.21 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.seleniumhq.selenium#htmlunit-driver;2.23.2 {optional=[compile(), master()]} ⇒ dependency: org.seleniumhq.selenium#htmlunit-driver;2.21 {optional=[compile(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework#spring-test;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-test;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.3.0 {optional=[compile(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sourceforge.htmlunit#htmlunit;2.23 {optional=[compile(), master()]} ⇒ dependency: net.sourceforge.htmlunit#htmlunit;2.21 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.seleniumhq.selenium#htmlunit-driver;2.23.2 {optional=[compile(), master()]} ⇒ dependency: org.seleniumhq.selenium#htmlunit-driver;2.21 {optional=[compile(), master()]}
== resolving dependencies org.springframework#spring-test;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.3.0 {optional=[compile(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sourceforge.htmlunit#htmlunit;2.23 {optional=[compile(), master()]} ⇒ dependency: net.sourceforge.htmlunit#htmlunit;2.21 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.seleniumhq.selenium#htmlunit-driver;2.23.2 {optional=[compile(), master()]} ⇒ dependency: org.seleniumhq.selenium#htmlunit-driver;2.21 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.3.0 {optional=[compile(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sourceforge.htmlunit#htmlunit;2.23 {optional=[compile(), master()]} ⇒ dependency: net.sourceforge.htmlunit#htmlunit;2.21 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.seleniumhq.selenium#htmlunit-driver;2.23.2 {optional=[compile(), master()]} ⇒ dependency: org.seleniumhq.selenium#htmlunit-driver;2.21 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.3.0 {optional=[compile(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sourceforge.htmlunit#htmlunit;2.23 {optional=[compile(), master()]} ⇒ dependency: net.sourceforge.htmlunit#htmlunit;2.21 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.seleniumhq.selenium#htmlunit-driver;2.23.2 {optional=[compile(), master()]} ⇒ dependency: org.seleniumhq.selenium#htmlunit-driver;2.21 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.3.0 {optional=[compile(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sourceforge.htmlunit#htmlunit;2.23 {optional=[compile(), master()]} ⇒ dependency: net.sourceforge.htmlunit#htmlunit;2.21 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.seleniumhq.selenium#htmlunit-driver;2.23.2 {optional=[compile(), master()]} ⇒ dependency: org.seleniumhq.selenium#htmlunit-driver;2.21 {optional=[compile(), master()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-test;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE→org.springframework.boot#spring-boot-test;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-test;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE→org.springframework.boot#spring-boot-test;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-test;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-test;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-test;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→javax.inject#javax.inject;1 [runtime→runtime()]
loadData of javax.inject#javax.inject;1 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→javax.inject#javax.inject;1 [runtime→compile]
loadData of javax.inject#javax.inject;1 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.github.tomakehurst#wiremock-standalone;2.16.0 [runtime→runtime()]
loadData of com.github.tomakehurst#wiremock-standalone;2.16.0 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.github.tomakehurst#wiremock-standalone;2.16.0 [runtime→compile]
loadData of com.github.tomakehurst#wiremock-standalone;2.16.0 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.toomuchcoding.jsonassert#jsonassert;0.4.12 [runtime→runtime()]
loadData of com.toomuchcoding.jsonassert#jsonassert;0.4.12 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.toomuchcoding.jsonassert#jsonassert;0.4.12 [runtime→compile]
loadData of com.toomuchcoding.jsonassert#jsonassert;0.4.12 of rootConf=default
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies com.toomuchcoding.jsonassert#jsonassert;0.4.12→com.jayway.jsonpath#json-path;2.2.0 [runtime→runtime()]
loadData of com.jayway.jsonpath#json-path;2.2.0 of rootConf=default
== resolving dependencies com.toomuchcoding.jsonassert#jsonassert;0.4.12→com.jayway.jsonpath#json-path;2.2.0 [runtime→compile]
loadData of com.jayway.jsonpath#json-path;2.2.0 of rootConf=default
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.jayway.jsonpath#json-path;2.2.0→net.minidev#json-smart;2.2.1 [runtime→runtime()]
loadData of net.minidev#json-smart;2.2.1 of rootConf=default
== resolving dependencies com.jayway.jsonpath#json-path;2.2.0→net.minidev#json-smart;2.2.1 [runtime→compile]
loadData of net.minidev#json-smart;2.2.1 of rootConf=default
== resolving dependencies net.minidev#json-smart;2.2.1→net.minidev#accessors-smart;1.1 [runtime→runtime()]
loadData of net.minidev#accessors-smart;1.1 of rootConf=default
== resolving dependencies net.minidev#json-smart;2.2.1→net.minidev#accessors-smart;1.1 [runtime→compile]
loadData of net.minidev#accessors-smart;1.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies net.minidev#accessors-smart;1.1→org.ow2.asm#asm;5.0.3 [runtime→runtime()]
loadData of org.ow2.asm#asm;5.0.3 of rootConf=default
== resolving dependencies net.minidev#accessors-smart;1.1→org.ow2.asm#asm;5.0.3 [runtime→compile]
loadData of org.ow2.asm#asm;5.0.3 of rootConf=default
== resolving dependencies com.jayway.jsonpath#json-path;2.2.0→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.jayway.jsonpath#json-path;2.2.0→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.codehaus.groovy#groovy;2.4.15 [runtime→runtime()]
loadData of org.codehaus.groovy#groovy;2.4.15 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.codehaus.groovy#groovy;2.4.15 [runtime→compile]
loadData of org.codehaus.groovy#groovy;2.4.15 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.codehaus.groovy#groovy-nio;2.4.15 [runtime→runtime()]
loadData of org.codehaus.groovy#groovy-nio;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.codehaus.groovy#groovy-json;2.4.15 [runtime→runtime()]
loadData of org.codehaus.groovy#groovy-json;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.codehaus.groovy#groovy-xml;2.4.15 [runtime→runtime()]
loadData of org.codehaus.groovy#groovy-xml;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.skyscreamer#jsonassert;1.4.0 [runtime→runtime()]
loadData of org.skyscreamer#jsonassert;1.4.0 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.skyscreamer#jsonassert;1.4.0 [runtime→compile]
loadData of org.skyscreamer#jsonassert;1.4.0 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.skyscreamer#jsonassert;1.4.0→com.vaadin.external.google#android-json;0.0.20131108.vaadin1 [runtime→runtime()]
loadData of com.vaadin.external.google#android-json;0.0.20131108.vaadin1 of rootConf=default
== resolving dependencies org.skyscreamer#jsonassert;1.4.0→com.vaadin.external.google#android-json;0.0.20131108.vaadin1 [runtime→compile]
loadData of com.vaadin.external.google#android-json;0.0.20131108.vaadin1 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.github.jknack#handlebars;4.0.6 [runtime→runtime()]
loadData of com.github.jknack#handlebars;4.0.6 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.github.jknack#handlebars;4.0.6 [runtime→compile]
loadData of com.github.jknack#handlebars;4.0.6 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.apache.commons#commons-lang3;3.1 [runtime→runtime()]
loadData of org.apache.commons#commons-lang3;3.1 of rootConf=default
default is evicted. Skip loading
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.apache.commons#commons-lang3;3.5 [runtime→runtime()]
loadData of org.apache.commons#commons-lang3;3.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.apache.commons#commons-lang3;3.5 [runtime→compile]
loadData of org.apache.commons#commons-lang3;3.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.antlr#antlr4-runtime;4.5.1-1 [runtime→runtime()]
loadData of org.antlr#antlr4-runtime;4.5.1-1 of rootConf=default
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.antlr#antlr4-runtime;4.5.1-1 [runtime→compile]
loadData of org.antlr#antlr4-runtime;4.5.1-1 of rootConf=default
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.mozilla#rhino;1.7R4 [runtime→runtime()]
loadData of org.mozilla#rhino;1.7R4 of rootConf=default
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.mozilla#rhino;1.7R4 [runtime→compile]
loadData of org.mozilla#rhino;1.7R4 of rootConf=default
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→commons-beanutils#commons-beanutils;1.9.3 [runtime→runtime()]
loadData of commons-beanutils#commons-beanutils;1.9.3 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→commons-beanutils#commons-beanutils;1.9.3 [runtime→compile]
loadData of commons-beanutils#commons-beanutils;1.9.3 of rootConf=default
excluding dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} in runtime
== resolving dependencies commons-beanutils#commons-beanutils;1.9.3→commons-collections#commons-collections;3.2.2 [runtime→runtime()]
loadData of commons-collections#commons-collections;3.2.2 of rootConf=default
== resolving dependencies commons-beanutils#commons-beanutils;1.9.3→commons-collections#commons-collections;3.2.2 [runtime→compile]
loadData of commons-collections#commons-collections;3.2.2 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.yaml#snakeyaml;1.17 [runtime→runtime()]
loadData of org.yaml#snakeyaml;1.17 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.yaml#snakeyaml;1.17 [runtime→compile]
loadData of org.yaml#snakeyaml;1.17 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework.boot#spring-boot-test;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-test;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework.boot#spring-boot-test;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-test;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→com.jayway.jsonpath#json-path;2.2.0 [runtime→runtime()]
loadData of com.jayway.jsonpath#json-path;2.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→com.jayway.jsonpath#json-path;2.2.0 [runtime→compile]
loadData of com.jayway.jsonpath#json-path;2.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→junit#junit;4.12 [runtime→runtime()]
loadData of junit#junit;4.12 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→junit#junit;4.12 [runtime→compile]
loadData of junit#junit;4.12 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.assertj#assertj-core;2.6.0 [runtime→runtime()]
loadData of org.assertj#assertj-core;2.6.0 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.assertj#assertj-core;2.6.0 [runtime→compile]
loadData of org.assertj#assertj-core;2.6.0 of rootConf=default
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.2.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.mockito#mockito-core;1.10.19 [runtime→runtime()]
loadData of org.mockito#mockito-core;1.10.19 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.mockito#mockito-core;1.10.19 [runtime→compile]
loadData of org.mockito#mockito-core;1.10.19 of rootConf=default
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.mockito#mockito-core;1.10.19→org.hamcrest#hamcrest-core;1.3 [runtime→master()]
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.mockito#mockito-core;1.10.19→org.hamcrest#hamcrest-core;1.3 [runtime→runtime()]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.mockito#mockito-core;1.10.19→org.hamcrest#hamcrest-core;1.3 [runtime→compile]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.mockito#mockito-core;1.10.19→org.hamcrest#hamcrest-core;1.3 [runtime→compile()]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.mockito#mockito-core;1.10.19→org.objenesis#objenesis;2.1 [runtime→master()]
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
loadData of org.objenesis#objenesis;2.1 of rootConf=default
using downloadGrapes to resolve org.objenesis#objenesis;2.1
downloadGrapes: Checking cache for: dependency: org.objenesis#objenesis;2.1 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.objenesis/objenesis/ivy-2.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.objenesis#objenesis;2.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.objenesis/objenesis/ivy-2.1.xml
downloadGrapes: module revision found in cache: org.objenesis#objenesis;2.1
found org.objenesis#objenesis;2.1 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.mockito#mockito-core;1.10.19→org.objenesis#objenesis;2.1 [runtime→runtime()]
loadData of org.objenesis#objenesis;2.1 of rootConf=default
== resolving dependencies org.mockito#mockito-core;1.10.19→org.objenesis#objenesis;2.1 [runtime→compile]
loadData of org.objenesis#objenesis;2.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.mockito#mockito-core;1.10.19→org.objenesis#objenesis;2.1 [runtime→compile()]
loadData of org.objenesis#objenesis;2.1 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.hamcrest#hamcrest-core;1.3 [runtime→runtime()]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.hamcrest#hamcrest-core;1.3 [runtime→compile]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.hamcrest#hamcrest-library;1.3 [runtime→runtime()]
loadData of org.hamcrest#hamcrest-library;1.3 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.hamcrest#hamcrest-library;1.3 [runtime→compile]
loadData of org.hamcrest#hamcrest-library;1.3 of rootConf=default
== resolving dependencies org.hamcrest#hamcrest-library;1.3→org.hamcrest#hamcrest-core;1.3 [runtime→runtime()]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.hamcrest#hamcrest-library;1.3→org.hamcrest#hamcrest-core;1.3 [runtime→compile]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.skyscreamer#jsonassert;1.4.0 [runtime→runtime()]
loadData of org.skyscreamer#jsonassert;1.4.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.skyscreamer#jsonassert;1.4.0 [runtime→compile]
loadData of org.skyscreamer#jsonassert;1.4.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework#spring-test;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-test;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework#spring-test;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-test;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.3.0 {optional=[compile(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sourceforge.htmlunit#htmlunit;2.23 {optional=[compile(), master()]} ⇒ dependency: net.sourceforge.htmlunit#htmlunit;2.21 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.seleniumhq.selenium#htmlunit-driver;2.23.2 {optional=[compile(), master()]} ⇒ dependency: org.seleniumhq.selenium#htmlunit-driver;2.21 {optional=[compile(), master()]}
== resolving dependencies org.springframework#spring-test;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-test;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-contract-shade/ivy-1.2.5.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-contract-shade/ivy-1.2.5.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE
found org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→junit#junit;4.12 [compile→master()]
loadData of junit#junit;4.12 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→junit#junit;4.12 [compile→compile()]
loadData of junit#junit;4.12 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→junit#junit;4.12 [runtime→runtime()]
loadData of junit#junit;4.12 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→junit#junit;4.12 [runtime→compile]
loadData of junit#junit;4.12 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-cloudfoundry-discovery/ivy-1.1.2.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-cloudfoundry-discovery/ivy-1.1.2.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE
found org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE in jcenter
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE→org.cloudfoundry#cloudfoundry-client-lib;1.1.3 [compile→master()]
loadData of org.cloudfoundry#cloudfoundry-client-lib;1.1.3 of rootConf=default
using downloadGrapes to resolve org.cloudfoundry#cloudfoundry-client-lib;1.1.3
downloadGrapes: Checking cache for: dependency: org.cloudfoundry#cloudfoundry-client-lib;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.cloudfoundry/cloudfoundry-client-lib/ivy-1.1.3.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.cloudfoundry#cloudfoundry-client-lib;1.1.3 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.cloudfoundry/cloudfoundry-client-lib/ivy-1.1.3.xml
downloadGrapes: module revision found in cache: org.cloudfoundry#cloudfoundry-client-lib;1.1.3
found org.cloudfoundry#cloudfoundry-client-lib;1.1.3 in localm2
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE→org.cloudfoundry#cloudfoundry-client-lib;1.1.3 [compile→compile()]
loadData of org.cloudfoundry#cloudfoundry-client-lib;1.1.3 of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.springframework#spring-webmvc;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.springframework#spring-webmvc;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.springframework#spring-webmvc;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-webmvc;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.security.oauth/spring-security-oauth2/ivy-2.0.15.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.security.oauth/spring-security-oauth2/ivy-2.0.15.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE
found org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE in localm2
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE [compile→compile()]
loadData of org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-webmvc;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
loadData of org.springframework#spring-webmvc;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-webmvc;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-webmvc;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework.security#spring-security-core;4.2.7.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.springframework.security#spring-security-core;4.2.7.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.security#spring-security-core;4.2.7.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.security/spring-security-core/ivy-4.2.7.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.security#spring-security-core;4.2.7.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.security/spring-security-core/ivy-4.2.7.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.security#spring-security-core;4.2.7.RELEASE
found org.springframework.security#spring-security-core;4.2.7.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework.security#spring-security-core;4.2.7.RELEASE [compile→compile()]
loadData of org.springframework.security#spring-security-core;4.2.7.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→aopalliance#aopalliance;1.0 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of aopalliance#aopalliance;1.0 of rootConf=default
using downloadGrapes to resolve aopalliance#aopalliance;1.0
downloadGrapes: Checking cache for: dependency: aopalliance#aopalliance;1.0 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/aopalliance/aopalliance/ivy-1.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for aopalliance#aopalliance;1.0 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/aopalliance/aopalliance/ivy-1.0.xml
downloadGrapes: module revision found in cache: aopalliance#aopalliance;1.0
found aopalliance#aopalliance;1.0 in localm2
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→aopalliance#aopalliance;1.0 [compile→compile()]
loadData of aopalliance#aopalliance;1.0 of rootConf=default
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework.security#spring-security-config;4.2.7.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.springframework.security#spring-security-config;4.2.7.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.security#spring-security-config;4.2.7.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.security/spring-security-config/ivy-4.2.7.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.security#spring-security-config;4.2.7.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.security/spring-security-config/ivy-4.2.7.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.security#spring-security-config;4.2.7.RELEASE
found org.springframework.security#spring-security-config;4.2.7.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework.security#spring-security-config;4.2.7.RELEASE [compile→compile()]
loadData of org.springframework.security#spring-security-config;4.2.7.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→aopalliance#aopalliance;1.0 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of aopalliance#aopalliance;1.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→aopalliance#aopalliance;1.0 [compile→compile()]
loadData of aopalliance#aopalliance;1.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework.security#spring-security-core;4.2.7.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework.security#spring-security-core;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework.security#spring-security-core;4.2.7.RELEASE [compile→compile()]
loadData of org.springframework.security#spring-security-core;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework.security#spring-security-web;4.2.7.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.springframework.security#spring-security-web;4.2.7.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.security#spring-security-web;4.2.7.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.security/spring-security-web/ivy-4.2.7.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.security#spring-security-web;4.2.7.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.security/spring-security-web/ivy-4.2.7.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.security#spring-security-web;4.2.7.RELEASE
found org.springframework.security#spring-security-web;4.2.7.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework.security#spring-security-web;4.2.7.RELEASE [compile→compile()]
loadData of org.springframework.security#spring-security-web;4.2.7.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→aopalliance#aopalliance;1.0 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of aopalliance#aopalliance;1.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→aopalliance#aopalliance;1.0 [compile→compile()]
loadData of aopalliance#aopalliance;1.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework.security#spring-security-core;4.2.7.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework.security#spring-security-core;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework.security#spring-security-core;4.2.7.RELEASE [compile→compile()]
loadData of org.springframework.security#spring-security-core;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→commons-codec#commons-codec;1.10 [compile→master()]
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of commons-codec#commons-codec;1.10 of rootConf=default
using downloadGrapes to resolve commons-codec#commons-codec;1.10
downloadGrapes: Checking cache for: dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/commons-codec/commons-codec/ivy-1.10.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for commons-codec#commons-codec;1.10 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/commons-codec/commons-codec/ivy-1.10.xml
downloadGrapes: module revision found in cache: commons-codec#commons-codec;1.10
found commons-codec#commons-codec;1.10 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→commons-codec#commons-codec;1.10 [compile→compile()]
loadData of commons-codec#commons-codec;1.10 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.codehaus.jackson#jackson-mapper-asl;1.9.13 [compile→master()]
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.13 of rootConf=default
using downloadGrapes to resolve org.codehaus.jackson#jackson-mapper-asl;1.9.13
downloadGrapes: Checking cache for: dependency: org.codehaus.jackson#jackson-mapper-asl;1.9.13 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.codehaus.jackson/jackson-mapper-asl/ivy-1.9.13.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.codehaus.jackson#jackson-mapper-asl;1.9.13 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.codehaus.jackson/jackson-mapper-asl/ivy-1.9.13.xml
downloadGrapes: module revision found in cache: org.codehaus.jackson#jackson-mapper-asl;1.9.13
found org.codehaus.jackson#jackson-mapper-asl;1.9.13 in localm2
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.codehaus.jackson#jackson-mapper-asl;1.9.13 [compile→compile()]
loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.13 of rootConf=default
== resolving dependencies org.codehaus.jackson#jackson-mapper-asl;1.9.13→org.codehaus.jackson#jackson-core-asl;1.9.13 [compile→master()]
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.codehaus.jackson#jackson-core-asl;1.9.13 of rootConf=default
using downloadGrapes to resolve org.codehaus.jackson#jackson-core-asl;1.9.13
downloadGrapes: Checking cache for: dependency: org.codehaus.jackson#jackson-core-asl;1.9.13 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.codehaus.jackson/jackson-core-asl/ivy-1.9.13.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.codehaus.jackson#jackson-core-asl;1.9.13 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.codehaus.jackson/jackson-core-asl/ivy-1.9.13.xml
downloadGrapes: module revision found in cache: org.codehaus.jackson#jackson-core-asl;1.9.13
found org.codehaus.jackson#jackson-core-asl;1.9.13 in localm2
== resolving dependencies org.codehaus.jackson#jackson-mapper-asl;1.9.13→org.codehaus.jackson#jackson-core-asl;1.9.13 [compile→compile()]
loadData of org.codehaus.jackson#jackson-core-asl;1.9.13 of rootConf=default
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.apache.httpcomponents#httpclient;4.5.5 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
using downloadGrapes to resolve org.apache.httpcomponents#httpclient;4.5.5
downloadGrapes: Checking cache for: dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.httpcomponents/httpclient/ivy-4.5.5.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.apache.httpcomponents#httpclient;4.5.5 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.httpcomponents/httpclient/ivy-4.5.5.xml
downloadGrapes: module revision found in cache: org.apache.httpcomponents#httpclient;4.5.5
found org.apache.httpcomponents#httpclient;4.5.5 in localm2
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.apache.httpcomponents#httpclient;4.5.5 [compile→compile()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→org.apache.httpcomponents#httpcore;4.4.9 [compile→master()]
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
using downloadGrapes to resolve org.apache.httpcomponents#httpcore;4.4.9
downloadGrapes: Checking cache for: dependency: org.apache.httpcomponents#httpcore;4.4.9 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.httpcomponents/httpcore/ivy-4.4.9.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.apache.httpcomponents#httpcore;4.4.9 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.httpcomponents/httpcore/ivy-4.4.9.xml
downloadGrapes: module revision found in cache: org.apache.httpcomponents#httpcore;4.4.9
found org.apache.httpcomponents#httpcore;4.4.9 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.12 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {test=[runtime(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {test=[runtime(), master()]}
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→org.apache.httpcomponents#httpcore;4.4.9 [compile→compile()]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.12 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {test=[runtime(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {test=[runtime(), master()]}
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→commons-logging#commons-logging;1.1.3 [compile→master()]
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of commons-logging#commons-logging;1.1.3 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→commons-logging#commons-logging;1.2 [compile→master()]
loadData of commons-logging#commons-logging;1.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→commons-logging#commons-logging;1.1.3 [compile→compile()]
loadData of commons-logging#commons-logging;1.1.3 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→commons-logging#commons-logging;1.2 [compile→compile()]
loadData of commons-logging#commons-logging;1.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→commons-codec#commons-codec;1.10 [compile→master()]
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of commons-codec#commons-codec;1.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→commons-codec#commons-codec;1.10 [compile→compile()]
loadData of commons-codec#commons-codec;1.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→commons-io#commons-io;2.1 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of commons-io#commons-io;2.1 of rootConf=default
using downloadGrapes to resolve commons-io#commons-io;2.1
downloadGrapes: Checking cache for: dependency: commons-io#commons-io;2.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/commons-io/commons-io/ivy-2.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for commons-io#commons-io;2.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/commons-io/commons-io/ivy-2.1.xml
downloadGrapes: module revision found in cache: commons-io#commons-io;2.1
found commons-io#commons-io;2.1 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→commons-io#commons-io;2.1 [compile→compile()]
loadData of commons-io#commons-io;2.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.esotericsoftware.yamlbeans#yamlbeans;1.06 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of com.esotericsoftware.yamlbeans#yamlbeans;1.06 of rootConf=default
using downloadGrapes to resolve com.esotericsoftware.yamlbeans#yamlbeans;1.06
downloadGrapes: Checking cache for: dependency: com.esotericsoftware.yamlbeans#yamlbeans;1.06 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.esotericsoftware.yamlbeans/yamlbeans/ivy-1.06.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.esotericsoftware.yamlbeans#yamlbeans;1.06 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.esotericsoftware.yamlbeans/yamlbeans/ivy-1.06.xml
downloadGrapes: module revision found in cache: com.esotericsoftware.yamlbeans#yamlbeans;1.06
found com.esotericsoftware.yamlbeans#yamlbeans;1.06 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.esotericsoftware.yamlbeans#yamlbeans;1.06 [compile→compile()]
loadData of com.esotericsoftware.yamlbeans#yamlbeans;1.06 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.fasterxml.jackson.core#jackson-core;2.8.11 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.fasterxml.jackson.core#jackson-core;2.8.11 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 [compile→compile()]
loadData of org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.apache.tomcat#tomcat-juli;8.0.15 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.apache.tomcat#tomcat-juli;8.0.15 of rootConf=default
using downloadGrapes to resolve org.apache.tomcat#tomcat-juli;8.0.15
downloadGrapes: Checking cache for: dependency: org.apache.tomcat#tomcat-juli;8.0.15 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.tomcat/tomcat-juli/ivy-8.0.15.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.apache.tomcat#tomcat-juli;8.0.15 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.tomcat/tomcat-juli/ivy-8.0.15.xml
downloadGrapes: module revision found in cache: org.apache.tomcat#tomcat-juli;8.0.15
found org.apache.tomcat#tomcat-juli;8.0.15 in localm2
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.apache.tomcat#tomcat-juli;8.0.15 [compile→compile()]
loadData of org.apache.tomcat#tomcat-juli;8.0.15 of rootConf=default
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.google.protobuf#protobuf-java;2.6.1 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of com.google.protobuf#protobuf-java;2.6.1 of rootConf=default
using downloadGrapes to resolve com.google.protobuf#protobuf-java;2.6.1
downloadGrapes: Checking cache for: dependency: com.google.protobuf#protobuf-java;2.6.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.google.protobuf/protobuf-java/ivy-2.6.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.google.protobuf#protobuf-java;2.6.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.google.protobuf/protobuf-java/ivy-2.6.1.xml
downloadGrapes: module revision found in cache: com.google.protobuf#protobuf-java;2.6.1
found com.google.protobuf#protobuf-java;2.6.1 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.4 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.google.protobuf#protobuf-java;2.6.1 [compile→compile()]
loadData of com.google.protobuf#protobuf-java;2.6.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.4 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE→org.cloudfoundry#cloudfoundry-client-lib;1.1.3 [compile→runtime()]
loadData of org.cloudfoundry#cloudfoundry-client-lib;1.1.3 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE→org.cloudfoundry#cloudfoundry-client-lib;1.1.3 [compile→compile]
loadData of org.cloudfoundry#cloudfoundry-client-lib;1.1.3 of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.springframework#spring-webmvc;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-webmvc;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.springframework#spring-webmvc;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-webmvc;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE [runtime→runtime()]
loadData of org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE of rootConf=default
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE [runtime→compile]
loadData of org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-webmvc;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-webmvc;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-webmvc;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-webmvc;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework.security#spring-security-core;4.2.7.RELEASE [runtime→runtime()]
loadData of org.springframework.security#spring-security-core;4.2.7.RELEASE of rootConf=default
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework.security#spring-security-core;4.2.7.RELEASE [runtime→compile]
loadData of org.springframework.security#spring-security-core;4.2.7.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→aopalliance#aopalliance;1.0 [runtime→runtime()]
loadData of aopalliance#aopalliance;1.0 of rootConf=default
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→aopalliance#aopalliance;1.0 [runtime→compile]
loadData of aopalliance#aopalliance;1.0 of rootConf=default
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework.security#spring-security-config;4.2.7.RELEASE [runtime→runtime()]
loadData of org.springframework.security#spring-security-config;4.2.7.RELEASE of rootConf=default
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework.security#spring-security-config;4.2.7.RELEASE [runtime→compile]
loadData of org.springframework.security#spring-security-config;4.2.7.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→aopalliance#aopalliance;1.0 [runtime→runtime()]
loadData of aopalliance#aopalliance;1.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→aopalliance#aopalliance;1.0 [runtime→compile]
loadData of aopalliance#aopalliance;1.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework.security#spring-security-core;4.2.7.RELEASE [runtime→runtime()]
loadData of org.springframework.security#spring-security-core;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework.security#spring-security-core;4.2.7.RELEASE [runtime→compile]
loadData of org.springframework.security#spring-security-core;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework.security#spring-security-web;4.2.7.RELEASE [runtime→runtime()]
loadData of org.springframework.security#spring-security-web;4.2.7.RELEASE of rootConf=default
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework.security#spring-security-web;4.2.7.RELEASE [runtime→compile]
loadData of org.springframework.security#spring-security-web;4.2.7.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→aopalliance#aopalliance;1.0 [runtime→runtime()]
loadData of aopalliance#aopalliance;1.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→aopalliance#aopalliance;1.0 [runtime→compile]
loadData of aopalliance#aopalliance;1.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework.security#spring-security-core;4.2.7.RELEASE [runtime→runtime()]
loadData of org.springframework.security#spring-security-core;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework.security#spring-security-core;4.2.7.RELEASE [runtime→compile]
loadData of org.springframework.security#spring-security-core;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→commons-codec#commons-codec;1.10 [runtime→runtime()]
loadData of commons-codec#commons-codec;1.10 of rootConf=default
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→commons-codec#commons-codec;1.10 [runtime→compile]
loadData of commons-codec#commons-codec;1.10 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.codehaus.jackson#jackson-mapper-asl;1.9.13 [runtime→runtime()]
loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.13 of rootConf=default
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.codehaus.jackson#jackson-mapper-asl;1.9.13 [runtime→compile]
loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.13 of rootConf=default
== resolving dependencies org.codehaus.jackson#jackson-mapper-asl;1.9.13→org.codehaus.jackson#jackson-core-asl;1.9.13 [runtime→runtime()]
loadData of org.codehaus.jackson#jackson-core-asl;1.9.13 of rootConf=default
== resolving dependencies org.codehaus.jackson#jackson-mapper-asl;1.9.13→org.codehaus.jackson#jackson-core-asl;1.9.13 [runtime→compile]
loadData of org.codehaus.jackson#jackson-core-asl;1.9.13 of rootConf=default
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.apache.httpcomponents#httpclient;4.5.5 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.apache.httpcomponents#httpclient;4.5.5 [runtime→compile]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→org.apache.httpcomponents#httpcore;4.4.9 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→org.apache.httpcomponents#httpcore;4.4.9 [runtime→compile]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.12 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {test=[runtime(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {test=[runtime(), master()]}
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→commons-logging#commons-logging;1.1.3 [runtime→runtime()]
loadData of commons-logging#commons-logging;1.1.3 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→commons-logging#commons-logging;1.2 [runtime→runtime()]
loadData of commons-logging#commons-logging;1.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→commons-logging#commons-logging;1.2 [runtime→compile]
loadData of commons-logging#commons-logging;1.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→commons-codec#commons-codec;1.10 [runtime→runtime()]
loadData of commons-codec#commons-codec;1.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→commons-codec#commons-codec;1.10 [runtime→compile]
loadData of commons-codec#commons-codec;1.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→commons-io#commons-io;2.1 [runtime→runtime()]
loadData of commons-io#commons-io;2.1 of rootConf=default
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→commons-io#commons-io;2.1 [runtime→compile]
loadData of commons-io#commons-io;2.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.esotericsoftware.yamlbeans#yamlbeans;1.06 [runtime→runtime()]
loadData of com.esotericsoftware.yamlbeans#yamlbeans;1.06 of rootConf=default
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.esotericsoftware.yamlbeans#yamlbeans;1.06 [runtime→compile]
loadData of com.esotericsoftware.yamlbeans#yamlbeans;1.06 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 [runtime→runtime()]
loadData of org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 [runtime→compile]
loadData of org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.apache.tomcat#tomcat-juli;8.0.15 [runtime→runtime()]
loadData of org.apache.tomcat#tomcat-juli;8.0.15 of rootConf=default
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.apache.tomcat#tomcat-juli;8.0.15 [runtime→compile]
loadData of org.apache.tomcat#tomcat-juli;8.0.15 of rootConf=default
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.google.protobuf#protobuf-java;2.6.1 [runtime→runtime()]
loadData of com.google.protobuf#protobuf-java;2.6.1 of rootConf=default
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.google.protobuf#protobuf-java;2.6.1 [runtime→compile]
loadData of com.google.protobuf#protobuf-java;2.6.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.4 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE→org.cloudfoundry#cloudfoundry-client-lib;1.1.3 [runtime→runtime()]
loadData of org.cloudfoundry#cloudfoundry-client-lib;1.1.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE→org.cloudfoundry#cloudfoundry-client-lib;1.1.3 [runtime→compile]
loadData of org.cloudfoundry#cloudfoundry-client-lib;1.1.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-cloudfoundry/ivy-1.1.2.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-cloudfoundry/ivy-1.1.2.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE
found org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE in jcenter
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.security#spring-security-rsa;1.0.3.RELEASE [compile→master()]
loadData of org.springframework.security#spring-security-rsa;1.0.3.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.security#spring-security-rsa;1.0.3.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.security#spring-security-rsa;1.0.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.security/spring-security-rsa/ivy-1.0.3.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.security#spring-security-rsa;1.0.3.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.security/spring-security-rsa/ivy-1.0.3.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.security#spring-security-rsa;1.0.3.RELEASE
found org.springframework.security#spring-security-rsa;1.0.3.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-crypto;3.2.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.1.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.security#spring-security-rsa;1.0.3.RELEASE [compile→compile()]
loadData of org.springframework.security#spring-security-rsa;1.0.3.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-crypto;3.2.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.1.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.security#spring-security-rsa;1.0.3.RELEASE→org.bouncycastle#bcpkix-jdk15on;1.55 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-crypto;3.2.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.1.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-crypto;3.2.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.1.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-crypto;3.2.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.1.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-crypto;3.2.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.1.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of org.bouncycastle#bcpkix-jdk15on;1.55 of rootConf=default
using downloadGrapes to resolve org.bouncycastle#bcpkix-jdk15on;1.55
downloadGrapes: Checking cache for: dependency: org.bouncycastle#bcpkix-jdk15on;1.55 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.bouncycastle/bcpkix-jdk15on/ivy-1.55.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.bouncycastle#bcpkix-jdk15on;1.55 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.bouncycastle/bcpkix-jdk15on/ivy-1.55.xml
downloadGrapes: module revision found in cache: org.bouncycastle#bcpkix-jdk15on;1.55
found org.bouncycastle#bcpkix-jdk15on;1.55 in localm2
== resolving dependencies org.springframework.security#spring-security-rsa;1.0.3.RELEASE→org.bouncycastle#bcpkix-jdk15on;1.55 [compile→compile()]
loadData of org.bouncycastle#bcpkix-jdk15on;1.55 of rootConf=default
== resolving dependencies org.bouncycastle#bcpkix-jdk15on;1.55→org.bouncycastle#bcprov-jdk15on;1.55 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-crypto;3.2.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.1.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-crypto;3.2.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.1.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-crypto;3.2.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.1.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-crypto;3.2.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.1.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of org.bouncycastle#bcprov-jdk15on;1.55 of rootConf=default
using downloadGrapes to resolve org.bouncycastle#bcprov-jdk15on;1.55
downloadGrapes: Checking cache for: dependency: org.bouncycastle#bcprov-jdk15on;1.55 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.bouncycastle/bcprov-jdk15on/ivy-1.55.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.bouncycastle#bcprov-jdk15on;1.55 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.bouncycastle/bcprov-jdk15on/ivy-1.55.xml
downloadGrapes: module revision found in cache: org.bouncycastle#bcprov-jdk15on;1.55
found org.bouncycastle#bcprov-jdk15on;1.55 in localm2
== resolving dependencies org.bouncycastle#bcpkix-jdk15on;1.55→org.bouncycastle#bcprov-jdk15on;1.55 [compile→compile()]
loadData of org.bouncycastle#bcprov-jdk15on;1.55 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.security#spring-security-rsa;1.0.3.RELEASE [runtime→runtime()]
loadData of org.springframework.security#spring-security-rsa;1.0.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.security#spring-security-rsa;1.0.3.RELEASE [runtime→compile]
loadData of org.springframework.security#spring-security-rsa;1.0.3.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-crypto;3.2.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in runtime
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.1.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in runtime
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.security#spring-security-rsa;1.0.3.RELEASE→org.bouncycastle#bcpkix-jdk15on;1.55 [runtime→runtime()]
loadData of org.bouncycastle#bcpkix-jdk15on;1.55 of rootConf=default
== resolving dependencies org.springframework.security#spring-security-rsa;1.0.3.RELEASE→org.bouncycastle#bcpkix-jdk15on;1.55 [runtime→compile]
loadData of org.bouncycastle#bcpkix-jdk15on;1.55 of rootConf=default
== resolving dependencies org.bouncycastle#bcpkix-jdk15on;1.55→org.bouncycastle#bcprov-jdk15on;1.55 [runtime→runtime()]
loadData of org.bouncycastle#bcprov-jdk15on;1.55 of rootConf=default
== resolving dependencies org.bouncycastle#bcpkix-jdk15on;1.55→org.bouncycastle#bcprov-jdk15on;1.55 [runtime→compile]
loadData of org.bouncycastle#bcprov-jdk15on;1.55 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE→org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-cloud-connectors/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-cloud-connectors/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE
found org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE→org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-spring-service-connector/ivy-1.2.6.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-spring-service-connector/ivy-1.2.6.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE
found org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE in localm2
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {optional=[compile(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.zaxxer#HikariCP-java6;2.1.0 {optional=[compile(), master()]} ⇒ dependency: com.zaxxer#HikariCP-java6;2.3.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-dbcp2;2.0 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-dbcp2;2.1.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;7.0.53 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mongodb#mongo-java-driver;2.11.4 {optional=[compile(), master()]} ⇒ dependency: org.mongodb#mongo-java-driver;3.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.4.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;3.1.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context-support;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context-support;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.1.0 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {optional=[compile(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.zaxxer#HikariCP-java6;2.1.0 {optional=[compile(), master()]} ⇒ dependency: com.zaxxer#HikariCP-java6;2.3.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-dbcp2;2.0 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-dbcp2;2.1.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;7.0.53 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mongodb#mongo-java-driver;2.11.4 {optional=[compile(), master()]} ⇒ dependency: org.mongodb#mongo-java-driver;3.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.4.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;3.1.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context-support;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context-support;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.1.0 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {optional=[compile(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.zaxxer#HikariCP-java6;2.1.0 {optional=[compile(), master()]} ⇒ dependency: com.zaxxer#HikariCP-java6;2.3.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-dbcp2;2.0 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-dbcp2;2.1.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;7.0.53 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mongodb#mongo-java-driver;2.11.4 {optional=[compile(), master()]} ⇒ dependency: org.mongodb#mongo-java-driver;3.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.4.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;3.1.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context-support;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context-support;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.1.0 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {optional=[compile(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.zaxxer#HikariCP-java6;2.1.0 {optional=[compile(), master()]} ⇒ dependency: com.zaxxer#HikariCP-java6;2.3.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-dbcp2;2.0 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-dbcp2;2.1.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;7.0.53 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mongodb#mongo-java-driver;2.11.4 {optional=[compile(), master()]} ⇒ dependency: org.mongodb#mongo-java-driver;3.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.4.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;3.1.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context-support;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context-support;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.1.0 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {optional=[compile(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.zaxxer#HikariCP-java6;2.1.0 {optional=[compile(), master()]} ⇒ dependency: com.zaxxer#HikariCP-java6;2.3.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-dbcp2;2.0 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-dbcp2;2.1.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;7.0.53 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mongodb#mongo-java-driver;2.11.4 {optional=[compile(), master()]} ⇒ dependency: org.mongodb#mongo-java-driver;3.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.4.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;3.1.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context-support;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context-support;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.1.0 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {optional=[compile(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.zaxxer#HikariCP-java6;2.1.0 {optional=[compile(), master()]} ⇒ dependency: com.zaxxer#HikariCP-java6;2.3.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-dbcp2;2.0 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-dbcp2;2.1.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;7.0.53 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mongodb#mongo-java-driver;2.11.4 {optional=[compile(), master()]} ⇒ dependency: org.mongodb#mongo-java-driver;3.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.4.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;3.1.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context-support;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context-support;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.1.0 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-core/ivy-1.2.6.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-core/ivy-1.2.6.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE
found org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {optional=[compile(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.zaxxer#HikariCP-java6;2.1.0 {optional=[compile(), master()]} ⇒ dependency: com.zaxxer#HikariCP-java6;2.3.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-dbcp2;2.0 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-dbcp2;2.1.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;7.0.53 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mongodb#mongo-java-driver;2.11.4 {optional=[compile(), master()]} ⇒ dependency: org.mongodb#mongo-java-driver;3.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.4.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;3.1.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context-support;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context-support;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.1.0 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {optional=[compile(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.zaxxer#HikariCP-java6;2.1.0 {optional=[compile(), master()]} ⇒ dependency: com.zaxxer#HikariCP-java6;2.3.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-dbcp2;2.0 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-dbcp2;2.1.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;7.0.53 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mongodb#mongo-java-driver;2.11.4 {optional=[compile(), master()]} ⇒ dependency: org.mongodb#mongo-java-driver;3.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.4.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;3.1.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context-support;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context-support;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.1.0 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {optional=[compile(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.zaxxer#HikariCP-java6;2.1.0 {optional=[compile(), master()]} ⇒ dependency: com.zaxxer#HikariCP-java6;2.3.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-dbcp2;2.0 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-dbcp2;2.1.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;7.0.53 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mongodb#mongo-java-driver;2.11.4 {optional=[compile(), master()]} ⇒ dependency: org.mongodb#mongo-java-driver;3.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.4.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;3.1.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context-support;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context-support;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.1.0 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {optional=[compile(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.zaxxer#HikariCP-java6;2.1.0 {optional=[compile(), master()]} ⇒ dependency: com.zaxxer#HikariCP-java6;2.3.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-dbcp2;2.0 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-dbcp2;2.1.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;7.0.53 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mongodb#mongo-java-driver;2.11.4 {optional=[compile(), master()]} ⇒ dependency: org.mongodb#mongo-java-driver;3.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.4.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;3.1.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context-support;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context-support;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.1.0 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-cloudfoundry-connector/ivy-1.2.6.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-cloudfoundry-connector/ivy-1.2.6.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE
found org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-heroku-connector/ivy-1.2.6.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-heroku-connector/ivy-1.2.6.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE
found org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-localconfig-connector/ivy-1.2.6.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-localconfig-connector/ivy-1.2.6.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE
found org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE→org.apache.commons#commons-lang3;3.3.2 [compile→master()]
loadData of org.apache.commons#commons-lang3;3.3.2 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE→org.apache.commons#commons-lang3;3.5 [compile→master()]
loadData of org.apache.commons#commons-lang3;3.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE→org.apache.commons#commons-lang3;3.3.2 [compile→compile()]
loadData of org.apache.commons#commons-lang3;3.3.2 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE→org.apache.commons#commons-lang3;3.5 [compile→compile()]
loadData of org.apache.commons#commons-lang3;3.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE→org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE [compile→runtime()]
loadData of org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE→org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE [compile→compile]
loadData of org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {optional=[compile(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.zaxxer#HikariCP-java6;2.1.0 {optional=[compile(), master()]} ⇒ dependency: com.zaxxer#HikariCP-java6;2.3.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-dbcp2;2.0 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-dbcp2;2.1.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;7.0.53 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mongodb#mongo-java-driver;2.11.4 {optional=[compile(), master()]} ⇒ dependency: org.mongodb#mongo-java-driver;3.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.4.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;3.1.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context-support;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context-support;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.1.0 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE→org.apache.commons#commons-lang3;3.3.2 [runtime→runtime()]
loadData of org.apache.commons#commons-lang3;3.3.2 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE→org.apache.commons#commons-lang3;3.5 [runtime→runtime()]
loadData of org.apache.commons#commons-lang3;3.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE→org.apache.commons#commons-lang3;3.5 [runtime→compile]
loadData of org.apache.commons#commons-lang3;3.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE→org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE→org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-sleuth/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-sleuth/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE in jcenter
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-aop/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-aop/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE
found org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE→org.aspectj#aspectjweaver;1.8.13 [compile→master()]
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
loadData of org.aspectj#aspectjweaver;1.8.13 of rootConf=default
using downloadGrapes to resolve org.aspectj#aspectjweaver;1.8.13
downloadGrapes: Checking cache for: dependency: org.aspectj#aspectjweaver;1.8.13 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.aspectj/aspectjweaver/ivy-1.8.13.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.aspectj#aspectjweaver;1.8.13 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.aspectj/aspectjweaver/ivy-1.8.13.xml
downloadGrapes: module revision found in cache: org.aspectj#aspectjweaver;1.8.13
found org.aspectj#aspectjweaver;1.8.13 in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE→org.aspectj#aspectjweaver;1.8.13 [compile→compile()]
loadData of org.aspectj#aspectjweaver;1.8.13 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE [compile→runtime()]
loadData of org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE [compile→compile]
loadData of org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE→org.aspectj#aspectjweaver;1.8.13 [runtime→runtime()]
loadData of org.aspectj#aspectjweaver;1.8.13 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE→org.aspectj#aspectjweaver;1.8.13 [runtime→compile]
loadData of org.aspectj#aspectjweaver;1.8.13 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-sleuth-core/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-sleuth-core/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE→org.aspectj#aspectjrt;1.8.13 [compile→master()]
loadData of org.aspectj#aspectjrt;1.8.13 of rootConf=default
using downloadGrapes to resolve org.aspectj#aspectjrt;1.8.13
downloadGrapes: Checking cache for: dependency: org.aspectj#aspectjrt;1.8.13 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.aspectj/aspectjrt/ivy-1.8.13.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.aspectj#aspectjrt;1.8.13 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.aspectj/aspectjrt/ivy-1.8.13.xml
downloadGrapes: module revision found in cache: org.aspectj#aspectjrt;1.8.13
found org.aspectj#aspectjrt;1.8.13 in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE→org.aspectj#aspectjrt;1.8.13 [compile→compile()]
loadData of org.aspectj#aspectjrt;1.8.13 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE→org.aspectj#aspectjrt;1.8.13 [runtime→runtime()]
loadData of org.aspectj#aspectjrt;1.8.13 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE→org.aspectj#aspectjrt;1.8.13 [runtime→compile]
loadData of org.aspectj#aspectjrt;1.8.13 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-zookeeper-all/ivy-1.2.2.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-zookeeper-all/ivy-1.2.2.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE
found org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE in jcenter
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-zookeeper-config/ivy-1.2.2.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-zookeeper-config/ivy-1.2.2.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE
found org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-zookeeper/ivy-1.2.2.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-zookeeper/ivy-1.2.2.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE
found org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-zookeeper-core/ivy-1.2.2.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-zookeeper-core/ivy-1.2.2.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE
found org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-zookeeper-config/ivy-1.2.2.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-zookeeper-config/ivy-1.2.2.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE
found org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.apache.curator#curator-recipes;2.11.1 [compile→master()]
loadData of org.apache.curator#curator-recipes;2.11.1 of rootConf=default
using downloadGrapes to resolve org.apache.curator#curator-recipes;2.11.1
downloadGrapes: Checking cache for: dependency: org.apache.curator#curator-recipes;2.11.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.curator/curator-recipes/ivy-2.11.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.apache.curator#curator-recipes;2.11.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.curator/curator-recipes/ivy-2.11.1.xml
downloadGrapes: module revision found in cache: org.apache.curator#curator-recipes;2.11.1
found org.apache.curator#curator-recipes;2.11.1 in localm2
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.apache.curator#curator-recipes;2.11.1 [compile→compile()]
loadData of org.apache.curator#curator-recipes;2.11.1 of rootConf=default
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.apache.curator#curator-recipes;2.11.1→org.apache.curator#curator-framework;2.11.1 [compile→master()]
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of org.apache.curator#curator-framework;2.11.1 of rootConf=default
using downloadGrapes to resolve org.apache.curator#curator-framework;2.11.1
downloadGrapes: Checking cache for: dependency: org.apache.curator#curator-framework;2.11.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.curator/curator-framework/ivy-2.11.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.apache.curator#curator-framework;2.11.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.curator/curator-framework/ivy-2.11.1.xml
downloadGrapes: module revision found in cache: org.apache.curator#curator-framework;2.11.1
found org.apache.curator#curator-framework;2.11.1 in localm2
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.apache.curator#curator-recipes;2.11.1→org.apache.curator#curator-framework;2.11.1 [compile→compile()]
loadData of org.apache.curator#curator-framework;2.11.1 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.apache.curator#curator-framework;2.11.1→org.apache.curator#curator-client;2.11.1 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of org.apache.curator#curator-client;2.11.1 of rootConf=default
using downloadGrapes to resolve org.apache.curator#curator-client;2.11.1
downloadGrapes: Checking cache for: dependency: org.apache.curator#curator-client;2.11.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.curator/curator-client/ivy-2.11.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.apache.curator#curator-client;2.11.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.curator/curator-client/ivy-2.11.1.xml
downloadGrapes: module revision found in cache: org.apache.curator#curator-client;2.11.1
found org.apache.curator#curator-client;2.11.1 in localm2
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.apache.curator#curator-framework;2.11.1→org.apache.curator#curator-client;2.11.1 [compile→compile()]
loadData of org.apache.curator#curator-client;2.11.1 of rootConf=default
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.apache.curator#curator-client;2.11.1→org.apache.zookeeper#zookeeper;3.4.8 [compile→master()]
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of org.apache.zookeeper#zookeeper;3.4.8 of rootConf=default
using downloadGrapes to resolve org.apache.zookeeper#zookeeper;3.4.8
downloadGrapes: Checking cache for: dependency: org.apache.zookeeper#zookeeper;3.4.8 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.zookeeper/zookeeper/ivy-3.4.8.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.apache.zookeeper#zookeeper;3.4.8 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.zookeeper/zookeeper/ivy-3.4.8.xml
downloadGrapes: module revision found in cache: org.apache.zookeeper#zookeeper;3.4.8
found org.apache.zookeeper#zookeeper;3.4.8 in localm2
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.apache.curator#curator-client;2.11.1→org.apache.zookeeper#zookeeper;3.4.8 [compile→compile()]
loadData of org.apache.zookeeper#zookeeper;3.4.8 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]} in compile
excluding dependency: log4j#log4j;1.2.16 {compile=[compile(), master()], runtime=[runtime()]} in compile
excluding dependency: io.netty#netty;3.7.0.Final {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: junit#junit;4.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.apache.zookeeper#zookeeper;3.4.8→org.slf4j#slf4j-api;1.7.25 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]} in compile
excluding dependency: log4j#log4j;1.2.16 {compile=[compile(), master()], runtime=[runtime()]} in compile
excluding dependency: io.netty#netty;3.7.0.Final {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: junit#junit;4.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.zookeeper#zookeeper;3.4.8→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.zookeeper#zookeeper;3.4.8→jline#jline;0.9.94 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]} in compile
excluding dependency: log4j#log4j;1.2.16 {compile=[compile(), master()], runtime=[runtime()]} in compile
excluding dependency: io.netty#netty;3.7.0.Final {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: junit#junit;4.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of jline#jline;0.9.94 of rootConf=default
using downloadGrapes to resolve jline#jline;0.9.94
downloadGrapes: Checking cache for: dependency: jline#jline;0.9.94 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/jline/jline/ivy-0.9.94.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for jline#jline;0.9.94 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/jline/jline/ivy-0.9.94.xml
downloadGrapes: module revision found in cache: jline#jline;0.9.94
found jline#jline;0.9.94 in localm2
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: junit#junit;4.12 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.apache.zookeeper#zookeeper;3.4.8→jline#jline;0.9.94 [compile→compile()]
loadData of jline#jline;0.9.94 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: junit#junit;4.12 {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: junit#junit;4.12 {compile=[compile(), master()], runtime=[runtime()]} in compile
== resolving dependencies org.apache.curator#curator-client;2.11.1→com.google.guava#guava;18.0 [compile→master()]
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of com.google.guava#guava;18.0 of rootConf=default
using downloadGrapes to resolve com.google.guava#guava;18.0
downloadGrapes: Checking cache for: dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.google.guava/guava/ivy-18.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.google.guava#guava;18.0 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.google.guava/guava/ivy-18.0.xml
downloadGrapes: module revision found in cache: com.google.guava#guava;18.0
found com.google.guava#guava;18.0 in localm2
== resolving dependencies org.apache.curator#curator-client;2.11.1→com.google.guava#guava;18.0 [compile→compile()]
loadData of com.google.guava#guava;18.0 of rootConf=default
== resolving dependencies org.apache.curator#curator-client;2.11.1→org.slf4j#slf4j-api;1.7.25 [compile→master()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.curator#curator-client;2.11.1→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.apache.curator#curator-recipes;2.11.1 [runtime→runtime()]
loadData of org.apache.curator#curator-recipes;2.11.1 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.apache.curator#curator-recipes;2.11.1 [runtime→compile]
loadData of org.apache.curator#curator-recipes;2.11.1 of rootConf=default
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.apache.curator#curator-recipes;2.11.1→org.apache.curator#curator-framework;2.11.1 [runtime→runtime()]
loadData of org.apache.curator#curator-framework;2.11.1 of rootConf=default
== resolving dependencies org.apache.curator#curator-recipes;2.11.1→org.apache.curator#curator-framework;2.11.1 [runtime→compile]
loadData of org.apache.curator#curator-framework;2.11.1 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.apache.curator#curator-framework;2.11.1→org.apache.curator#curator-client;2.11.1 [runtime→runtime()]
loadData of org.apache.curator#curator-client;2.11.1 of rootConf=default
== resolving dependencies org.apache.curator#curator-framework;2.11.1→org.apache.curator#curator-client;2.11.1 [runtime→compile]
loadData of org.apache.curator#curator-client;2.11.1 of rootConf=default
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.apache.curator#curator-client;2.11.1→org.apache.zookeeper#zookeeper;3.4.8 [runtime→runtime()]
loadData of org.apache.zookeeper#zookeeper;3.4.8 of rootConf=default
== resolving dependencies org.apache.curator#curator-client;2.11.1→org.apache.zookeeper#zookeeper;3.4.8 [runtime→compile]
loadData of org.apache.zookeeper#zookeeper;3.4.8 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]} in runtime
excluding dependency: log4j#log4j;1.2.16 {compile=[compile(), master()], runtime=[runtime()]} in runtime
excluding dependency: io.netty#netty;3.7.0.Final {compile=[compile(), master()], runtime=[runtime()]} in runtime
dependency descriptor has been mediated: dependency: junit#junit;4.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.apache.zookeeper#zookeeper;3.4.8→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.zookeeper#zookeeper;3.4.8→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.zookeeper#zookeeper;3.4.8→jline#jline;0.9.94 [runtime→runtime()]
loadData of jline#jline;0.9.94 of rootConf=default
== resolving dependencies org.apache.zookeeper#zookeeper;3.4.8→jline#jline;0.9.94 [runtime→compile]
loadData of jline#jline;0.9.94 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: junit#junit;4.12 {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: junit#junit;4.12 {compile=[compile(), master()], runtime=[runtime()]} in runtime
== resolving dependencies org.apache.curator#curator-client;2.11.1→com.google.guava#guava;18.0 [runtime→runtime()]
loadData of com.google.guava#guava;18.0 of rootConf=default
== resolving dependencies org.apache.curator#curator-client;2.11.1→com.google.guava#guava;18.0 [runtime→compile]
loadData of com.google.guava#guava;18.0 of rootConf=default
== resolving dependencies org.apache.curator#curator-client;2.11.1→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.curator#curator-client;2.11.1→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-zookeeper-discovery/ivy-1.2.2.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-zookeeper-discovery/ivy-1.2.2.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE
found org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-zookeeper-discovery/ivy-1.2.2.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-zookeeper-discovery/ivy-1.2.2.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE
found org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.apache.curator#curator-x-discovery;2.11.1 [compile→master()]
loadData of org.apache.curator#curator-x-discovery;2.11.1 of rootConf=default
using downloadGrapes to resolve org.apache.curator#curator-x-discovery;2.11.1
downloadGrapes: Checking cache for: dependency: org.apache.curator#curator-x-discovery;2.11.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.curator/curator-x-discovery/ivy-2.11.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.apache.curator#curator-x-discovery;2.11.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.curator/curator-x-discovery/ivy-2.11.1.xml
downloadGrapes: module revision found in cache: org.apache.curator#curator-x-discovery;2.11.1
found org.apache.curator#curator-x-discovery;2.11.1 in localm2
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.apache.curator#curator-x-discovery;2.11.1 [compile→compile()]
loadData of org.apache.curator#curator-x-discovery;2.11.1 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.apache.curator#curator-x-discovery;2.11.1→org.apache.curator#curator-recipes;2.11.1 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of org.apache.curator#curator-recipes;2.11.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.curator#curator-x-discovery;2.11.1→org.apache.curator#curator-recipes;2.11.1 [compile→compile()]
loadData of org.apache.curator#curator-recipes;2.11.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.curator#curator-x-discovery;2.11.1→org.codehaus.jackson#jackson-mapper-asl;1.9.13 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.13 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.curator#curator-x-discovery;2.11.1→org.codehaus.jackson#jackson-mapper-asl;1.9.13 [compile→compile()]
loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.13 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-netflix-core/ivy-1.4.5.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-netflix-core/ivy-1.4.5.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE
found org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE in localm2
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.7.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.8.11 {optional=[compile(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.7.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.8.11 {optional=[compile(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.7.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.8.11 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.7.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.8.11 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.7.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.8.11 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.7.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.8.11 {optional=[compile(), master()]}
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.7.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.8.11 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.7.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.8.11 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.7.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.8.11 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.7.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.8.11 {optional=[compile(), master()]}
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-archaius/ivy-1.4.5.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-archaius/ivy-1.4.5.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE
found org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-netflix-archaius/ivy-1.4.5.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-netflix-archaius/ivy-1.4.5.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE
found org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.netflix.archaius#archaius-core;0.7.4 [compile→master()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
using downloadGrapes to resolve com.netflix.archaius#archaius-core;0.7.4
downloadGrapes: Checking cache for: dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.archaius/archaius-core/ivy-0.7.4.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.archaius#archaius-core;0.7.4 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.archaius/archaius-core/ivy-0.7.4.xml
downloadGrapes: module revision found in cache: com.netflix.archaius#archaius-core;0.7.4
found com.netflix.archaius#archaius-core;0.7.4 in localm2
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.netflix.archaius#archaius-core;0.7.4 [compile→compile()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→commons-configuration#commons-configuration;1.8 [compile→master()]
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
using downloadGrapes to resolve commons-configuration#commons-configuration;1.8
downloadGrapes: Checking cache for: dependency: commons-configuration#commons-configuration;1.8 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/commons-configuration/commons-configuration/ivy-1.8.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for commons-configuration#commons-configuration;1.8 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/commons-configuration/commons-configuration/ivy-1.8.xml
downloadGrapes: module revision found in cache: commons-configuration#commons-configuration;1.8
found commons-configuration#commons-configuration;1.8 in localm2
dependency descriptor has been mediated: dependency: commons-collections#commons-collections;3.2.1 {optional=[compile(), master()]} ⇒ dependency: commons-collections#commons-collections;3.2.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-digester#commons-digester;1.8.1 {optional=[compile(), master()]} ⇒ dependency: commons-digester#commons-digester;2.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-beanutils#commons-beanutils;1.8.3 {optional=[compile(), master()]} ⇒ dependency: commons-beanutils#commons-beanutils;1.9.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.5 {optional=[compile(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: xml-apis#xml-apis;1.0.b2 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: xml-apis#xml-apis;1.4.01 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-dbcp#commons-dbcp;1.2.2 {test=[runtime(), master()]} ⇒ dependency: commons-dbcp#commons-dbcp;1.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-pool#commons-pool;1.4 {test=[runtime(), master()]} ⇒ dependency: commons-pool#commons-pool;1.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→commons-configuration#commons-configuration;1.8 [compile→compile()]
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
dependency descriptor has been mediated: dependency: commons-collections#commons-collections;3.2.1 {optional=[compile(), master()]} ⇒ dependency: commons-collections#commons-collections;3.2.2 {optional=[compile(), master()]}
excluding dependency: commons-logging#commons-logging;1.1.1 {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: commons-digester#commons-digester;1.8.1 {optional=[compile(), master()]} ⇒ dependency: commons-digester#commons-digester;2.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-beanutils#commons-beanutils;1.8.3 {optional=[compile(), master()]} ⇒ dependency: commons-beanutils#commons-beanutils;1.9.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.5 {optional=[compile(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: xml-apis#xml-apis;1.0.b2 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: xml-apis#xml-apis;1.4.01 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-dbcp#commons-dbcp;1.2.2 {test=[runtime(), master()]} ⇒ dependency: commons-dbcp#commons-dbcp;1.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-pool#commons-pool;1.4 {test=[runtime(), master()]} ⇒ dependency: commons-pool#commons-pool;1.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies commons-configuration#commons-configuration;1.8→commons-lang#commons-lang;2.6 [compile→master()]
dependency descriptor has been mediated: dependency: commons-collections#commons-collections;3.2.1 {optional=[compile(), master()]} ⇒ dependency: commons-collections#commons-collections;3.2.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-digester#commons-digester;1.8.1 {optional=[compile(), master()]} ⇒ dependency: commons-digester#commons-digester;2.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-beanutils#commons-beanutils;1.8.3 {optional=[compile(), master()]} ⇒ dependency: commons-beanutils#commons-beanutils;1.9.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.5 {optional=[compile(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: xml-apis#xml-apis;1.0.b2 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: xml-apis#xml-apis;1.4.01 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-dbcp#commons-dbcp;1.2.2 {test=[runtime(), master()]} ⇒ dependency: commons-dbcp#commons-dbcp;1.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-pool#commons-pool;1.4 {test=[runtime(), master()]} ⇒ dependency: commons-pool#commons-pool;1.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-collections#commons-collections;3.2.1 {optional=[compile(), master()]} ⇒ dependency: commons-collections#commons-collections;3.2.2 {optional=[compile(), master()]}
excluding dependency: commons-logging#commons-logging;1.1.1 {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: commons-digester#commons-digester;1.8.1 {optional=[compile(), master()]} ⇒ dependency: commons-digester#commons-digester;2.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-beanutils#commons-beanutils;1.8.3 {optional=[compile(), master()]} ⇒ dependency: commons-beanutils#commons-beanutils;1.9.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.5 {optional=[compile(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: xml-apis#xml-apis;1.0.b2 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: xml-apis#xml-apis;1.4.01 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-dbcp#commons-dbcp;1.2.2 {test=[runtime(), master()]} ⇒ dependency: commons-dbcp#commons-dbcp;1.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-pool#commons-pool;1.4 {test=[runtime(), master()]} ⇒ dependency: commons-pool#commons-pool;1.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-collections#commons-collections;3.2.1 {optional=[compile(), master()]} ⇒ dependency: commons-collections#commons-collections;3.2.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-digester#commons-digester;1.8.1 {optional=[compile(), master()]} ⇒ dependency: commons-digester#commons-digester;2.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-beanutils#commons-beanutils;1.8.3 {optional=[compile(), master()]} ⇒ dependency: commons-beanutils#commons-beanutils;1.9.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.5 {optional=[compile(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: xml-apis#xml-apis;1.0.b2 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: xml-apis#xml-apis;1.4.01 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-dbcp#commons-dbcp;1.2.2 {test=[runtime(), master()]} ⇒ dependency: commons-dbcp#commons-dbcp;1.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-pool#commons-pool;1.4 {test=[runtime(), master()]} ⇒ dependency: commons-pool#commons-pool;1.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-collections#commons-collections;3.2.1 {optional=[compile(), master()]} ⇒ dependency: commons-collections#commons-collections;3.2.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-digester#commons-digester;1.8.1 {optional=[compile(), master()]} ⇒ dependency: commons-digester#commons-digester;2.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-beanutils#commons-beanutils;1.8.3 {optional=[compile(), master()]} ⇒ dependency: commons-beanutils#commons-beanutils;1.9.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.5 {optional=[compile(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: xml-apis#xml-apis;1.0.b2 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: xml-apis#xml-apis;1.4.01 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-dbcp#commons-dbcp;1.2.2 {test=[runtime(), master()]} ⇒ dependency: commons-dbcp#commons-dbcp;1.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-pool#commons-pool;1.4 {test=[runtime(), master()]} ⇒ dependency: commons-pool#commons-pool;1.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of commons-lang#commons-lang;2.6 of rootConf=default
using downloadGrapes to resolve commons-lang#commons-lang;2.6
downloadGrapes: Checking cache for: dependency: commons-lang#commons-lang;2.6 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/commons-lang/commons-lang/ivy-2.6.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for commons-lang#commons-lang;2.6 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/commons-lang/commons-lang/ivy-2.6.xml
downloadGrapes: module revision found in cache: commons-lang#commons-lang;2.6
found commons-lang#commons-lang;2.6 in localm2
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies commons-configuration#commons-configuration;1.8→commons-lang#commons-lang;2.6 [compile→compile()]
loadData of commons-lang#commons-lang;2.6 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [compile→master()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.fasterxml.jackson.core#jackson-core;2.8.11 [compile→master()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.fasterxml.jackson.core#jackson-core;2.8.11 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→master()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.google.guava#guava;18.0 [compile→master()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.google.guava#guava;18.0 [compile→compile()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon;2.2.5 [compile→master()]
loadData of com.netflix.ribbon#ribbon;2.2.5 of rootConf=default
using downloadGrapes to resolve com.netflix.ribbon#ribbon;2.2.5
downloadGrapes: Checking cache for: dependency: com.netflix.ribbon#ribbon;2.2.5 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.ribbon/ribbon/ivy-2.2.5.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.ribbon#ribbon;2.2.5 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.ribbon/ribbon/ivy-2.2.5.xml
downloadGrapes: module revision found in cache: com.netflix.ribbon#ribbon;2.2.5
found com.netflix.ribbon#ribbon;2.2.5 in localm2
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon;2.2.5 [compile→compile()]
loadData of com.netflix.ribbon#ribbon;2.2.5 of rootConf=default
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon-core;2.2.5 [compile→master()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
using downloadGrapes to resolve com.netflix.ribbon#ribbon-core;2.2.5
downloadGrapes: Checking cache for: dependency: com.netflix.ribbon#ribbon-core;2.2.5 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.ribbon/ribbon-core/ivy-2.2.5.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.ribbon#ribbon-core;2.2.5 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.ribbon/ribbon-core/ivy-2.2.5.xml
downloadGrapes: module revision found in cache: com.netflix.ribbon#ribbon-core;2.2.5
found com.netflix.ribbon#ribbon-core;2.2.5 in localm2
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon-core;2.2.5 [compile→compile()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon-httpclient;2.2.5 [compile→master()]
loadData of com.netflix.ribbon#ribbon-httpclient;2.2.5 of rootConf=default
using downloadGrapes to resolve com.netflix.ribbon#ribbon-httpclient;2.2.5
downloadGrapes: Checking cache for: dependency: com.netflix.ribbon#ribbon-httpclient;2.2.5 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.ribbon/ribbon-httpclient/ivy-2.2.5.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.ribbon#ribbon-httpclient;2.2.5 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.ribbon/ribbon-httpclient/ivy-2.2.5.xml
downloadGrapes: module revision found in cache: com.netflix.ribbon#ribbon-httpclient;2.2.5
found com.netflix.ribbon#ribbon-httpclient;2.2.5 in localm2
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon-httpclient;2.2.5 [compile→compile()]
loadData of com.netflix.ribbon#ribbon-httpclient;2.2.5 of rootConf=default
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [compile→master()]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
using downloadGrapes to resolve com.netflix.ribbon#ribbon-loadbalancer;2.2.5
downloadGrapes: Checking cache for: dependency: com.netflix.ribbon#ribbon-loadbalancer;2.2.5 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.ribbon/ribbon-loadbalancer/ivy-2.2.5.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.ribbon#ribbon-loadbalancer;2.2.5 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.ribbon/ribbon-loadbalancer/ivy-2.2.5.xml
downloadGrapes: module revision found in cache: com.netflix.ribbon#ribbon-loadbalancer;2.2.5
found com.netflix.ribbon#ribbon-loadbalancer;2.2.5 in localm2
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [compile→compile()]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.apache.curator#curator-x-discovery;2.11.1 [runtime→runtime()]
loadData of org.apache.curator#curator-x-discovery;2.11.1 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.apache.curator#curator-x-discovery;2.11.1 [runtime→compile]
loadData of org.apache.curator#curator-x-discovery;2.11.1 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.apache.curator#curator-x-discovery;2.11.1→org.apache.curator#curator-recipes;2.11.1 [runtime→runtime()]
loadData of org.apache.curator#curator-recipes;2.11.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.curator#curator-x-discovery;2.11.1→org.apache.curator#curator-recipes;2.11.1 [runtime→compile]
loadData of org.apache.curator#curator-recipes;2.11.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.curator#curator-x-discovery;2.11.1→org.codehaus.jackson#jackson-mapper-asl;1.9.13 [runtime→runtime()]
loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.13 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.curator#curator-x-discovery;2.11.1→org.codehaus.jackson#jackson-mapper-asl;1.9.13 [runtime→compile]
loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.13 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.7.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.8.11 {optional=[compile(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.netflix.archaius#archaius-core;0.7.4 [runtime→runtime()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.google.code.findbugs#jsr305;3.0.1 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
loadData of com.google.code.findbugs#jsr305;3.0.1 of rootConf=default
using downloadGrapes to resolve com.google.code.findbugs#jsr305;3.0.1
downloadGrapes: Checking cache for: dependency: com.google.code.findbugs#jsr305;3.0.1 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.google.code.findbugs/jsr305/ivy-3.0.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.google.code.findbugs#jsr305;3.0.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.google.code.findbugs/jsr305/ivy-3.0.1.xml
downloadGrapes: module revision found in cache: com.google.code.findbugs#jsr305;3.0.1
found com.google.code.findbugs#jsr305;3.0.1 in localm2
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.google.code.findbugs#jsr305;3.0.1 [runtime→runtime()]
loadData of com.google.code.findbugs#jsr305;3.0.1 of rootConf=default
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.google.code.findbugs#jsr305;3.0.1 [runtime→compile]
loadData of com.google.code.findbugs#jsr305;3.0.1 of rootConf=default
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.google.code.findbugs#jsr305;3.0.1 [runtime→compile()]
loadData of com.google.code.findbugs#jsr305;3.0.1 of rootConf=default
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→commons-configuration#commons-configuration;1.8 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→commons-configuration#commons-configuration;1.8 [runtime→runtime()]
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→commons-configuration#commons-configuration;1.8 [runtime→compile]
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
dependency descriptor has been mediated: dependency: commons-collections#commons-collections;3.2.1 {optional=[compile(), master()]} ⇒ dependency: commons-collections#commons-collections;3.2.2 {optional=[compile(), master()]}
excluding dependency: commons-logging#commons-logging;1.1.1 {compile=[compile(), master()], runtime=[runtime()]} in runtime
dependency descriptor has been mediated: dependency: commons-digester#commons-digester;1.8.1 {optional=[compile(), master()]} ⇒ dependency: commons-digester#commons-digester;2.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-beanutils#commons-beanutils;1.8.3 {optional=[compile(), master()]} ⇒ dependency: commons-beanutils#commons-beanutils;1.9.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.5 {optional=[compile(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: xml-apis#xml-apis;1.0.b2 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: xml-apis#xml-apis;1.4.01 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-dbcp#commons-dbcp;1.2.2 {test=[runtime(), master()]} ⇒ dependency: commons-dbcp#commons-dbcp;1.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-pool#commons-pool;1.4 {test=[runtime(), master()]} ⇒ dependency: commons-pool#commons-pool;1.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies commons-configuration#commons-configuration;1.8→commons-lang#commons-lang;2.6 [runtime→runtime()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
loadData of commons-lang#commons-lang;2.6 of rootConf=default
== resolving dependencies commons-configuration#commons-configuration;1.8→commons-lang#commons-lang;2.6 [runtime→compile]
loadData of commons-lang#commons-lang;2.6 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→commons-configuration#commons-configuration;1.8 [runtime→compile()]
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→org.slf4j#slf4j-api;1.7.25 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→org.slf4j#slf4j-api;1.7.25 [runtime→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.google.guava#guava;18.0 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.google.guava#guava;18.0 [runtime→runtime()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.google.guava#guava;18.0 [runtime→compile]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.google.guava#guava;18.0 [runtime→compile()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→compile()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→compile()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→commons-configuration#commons-configuration;1.8 [runtime→runtime()]
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→commons-configuration#commons-configuration;1.8 [runtime→compile]
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.google.guava#guava;18.0 [runtime→runtime()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.google.guava#guava;18.0 [runtime→compile]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon;2.2.5 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon;2.2.5 of rootConf=default
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→master()]
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→com.google.code.findbugs#annotations;2.0.0 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
using downloadGrapes to resolve com.google.code.findbugs#annotations;2.0.0
downloadGrapes: Checking cache for: dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.google.code.findbugs/annotations/ivy-2.0.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.google.code.findbugs#annotations;2.0.0 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.google.code.findbugs/annotations/ivy-2.0.0.xml
downloadGrapes: module revision found in cache: com.google.code.findbugs#annotations;2.0.0
found com.google.code.findbugs#annotations;2.0.0 in localm2
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→com.google.code.findbugs#annotations;2.0.0 [runtime→runtime()]
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→com.google.code.findbugs#annotations;2.0.0 [runtime→compile]
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→com.google.code.findbugs#annotations;2.0.0 [runtime→compile()]
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→com.google.guava#guava;18.0 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→com.google.guava#guava;18.0 [runtime→runtime()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→com.google.guava#guava;18.0 [runtime→compile]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→com.google.guava#guava;18.0 [runtime→compile()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→commons-configuration#commons-configuration;1.8 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→commons-configuration#commons-configuration;1.8 [runtime→runtime()]
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→commons-configuration#commons-configuration;1.8 [runtime→compile]
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→commons-configuration#commons-configuration;1.8 [runtime→compile()]
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→commons-lang#commons-lang;2.6 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of commons-lang#commons-lang;2.6 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→commons-lang#commons-lang;2.6 [runtime→runtime()]
loadData of commons-lang#commons-lang;2.6 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→commons-lang#commons-lang;2.6 [runtime→compile]
loadData of commons-lang#commons-lang;2.6 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→commons-lang#commons-lang;2.6 [runtime→compile()]
loadData of commons-lang#commons-lang;2.6 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→runtime()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→compile()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.ribbon#ribbon-transport;2.2.5 [runtime→master()]
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of com.netflix.ribbon#ribbon-transport;2.2.5 of rootConf=default
using downloadGrapes to resolve com.netflix.ribbon#ribbon-transport;2.2.5
downloadGrapes: Checking cache for: dependency: com.netflix.ribbon#ribbon-transport;2.2.5 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.ribbon/ribbon-transport/ivy-2.2.5.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.ribbon#ribbon-transport;2.2.5 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.ribbon/ribbon-transport/ivy-2.2.5.xml
downloadGrapes: module revision found in cache: com.netflix.ribbon#ribbon-transport;2.2.5
found com.netflix.ribbon#ribbon-transport;2.2.5 in localm2
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.ribbon#ribbon-transport;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-transport;2.2.5 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.ribbon#ribbon-transport;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-transport;2.2.5 of rootConf=default
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→compile()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→compile()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.netflix-commons#netflix-statistics;0.1.1 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of com.netflix.netflix-commons#netflix-statistics;0.1.1 of rootConf=default
using downloadGrapes to resolve com.netflix.netflix-commons#netflix-statistics;0.1.1
downloadGrapes: Checking cache for: dependency: com.netflix.netflix-commons#netflix-statistics;0.1.1 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.netflix-commons/netflix-statistics/ivy-0.1.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.netflix-commons#netflix-statistics;0.1.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.netflix-commons/netflix-statistics/ivy-0.1.1.xml
downloadGrapes: module revision found in cache: com.netflix.netflix-commons#netflix-statistics;0.1.1
found com.netflix.netflix-commons#netflix-statistics;0.1.1 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.netflix-commons#netflix-statistics;0.1.1 [runtime→runtime()]
loadData of com.netflix.netflix-commons#netflix-statistics;0.1.1 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.netflix-commons#netflix-statistics;0.1.1 [runtime→compile]
loadData of com.netflix.netflix-commons#netflix-statistics;0.1.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.netflix.netflix-commons#netflix-statistics;0.1.1→org.slf4j#slf4j-api;1.7.25 [compile→master()]
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-statistics;0.1.1→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-statistics;0.1.1→com.google.code.findbugs#annotations;2.0.0 [compile→master()]
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-statistics;0.1.1→com.google.code.findbugs#annotations;2.0.0 [compile→compile()]
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
default is loaded and no conf to load. Skip loading
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.netflix.netflix-commons#netflix-statistics;0.1.1→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-statistics;0.1.1→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-statistics;0.1.1→com.google.code.findbugs#annotations;2.0.0 [runtime→runtime()]
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-statistics;0.1.1→com.google.code.findbugs#annotations;2.0.0 [runtime→compile]
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.netflix-commons#netflix-statistics;0.1.1 [runtime→compile()]
loadData of com.netflix.netflix-commons#netflix-statistics;0.1.1 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→io.reactivex#rxjava;1.2.0 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
using downloadGrapes to resolve io.reactivex#rxjava;1.2.0
downloadGrapes: Checking cache for: dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/io.reactivex/rxjava/ivy-1.2.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for io.reactivex#rxjava;1.2.0 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/io.reactivex/rxjava/ivy-1.2.0.xml
downloadGrapes: module revision found in cache: io.reactivex#rxjava;1.2.0
found io.reactivex#rxjava;1.2.0 in localm2
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→io.reactivex#rxjava;1.2.0 [runtime→runtime()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→io.reactivex#rxjava;1.2.0 [runtime→compile]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→io.reactivex#rxjava;1.2.0 [runtime→compile()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→master()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.servo#servo-core;0.10.1 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
using downloadGrapes to resolve com.netflix.servo#servo-core;0.10.1
downloadGrapes: Checking cache for: dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.servo/servo-core/ivy-0.10.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.servo#servo-core;0.10.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.servo/servo-core/ivy-0.10.1.xml
downloadGrapes: module revision found in cache: com.netflix.servo#servo-core;0.10.1
found com.netflix.servo#servo-core;0.10.1 in localm2
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.servo#servo-core;0.10.1 [runtime→runtime()]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.servo#servo-core;0.10.1 [runtime→compile]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.servo#servo-core;0.10.1→org.slf4j#slf4j-api;1.7.25 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-core;0.10.1→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-core;0.10.1→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-core;0.10.1→org.slf4j#slf4j-api;1.7.25 [runtime→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-core;0.10.1→com.google.guava#guava;18.0 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-core;0.10.1→com.google.guava#guava;18.0 [runtime→runtime()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-core;0.10.1→com.google.guava#guava;18.0 [runtime→compile]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-core;0.10.1→com.google.guava#guava;18.0 [runtime→compile()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-core;0.10.1→com.google.code.findbugs#annotations;2.0.0 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-core;0.10.1→com.google.code.findbugs#annotations;2.0.0 [runtime→runtime()]
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-core;0.10.1→com.google.code.findbugs#annotations;2.0.0 [runtime→compile]
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-core;0.10.1→com.google.code.findbugs#annotations;2.0.0 [runtime→compile()]
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-core;0.10.1→com.netflix.servo#servo-internal;0.10.1 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of com.netflix.servo#servo-internal;0.10.1 of rootConf=default
using downloadGrapes to resolve com.netflix.servo#servo-internal;0.10.1
downloadGrapes: Checking cache for: dependency: com.netflix.servo#servo-internal;0.10.1 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.servo/servo-internal/ivy-0.10.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.servo#servo-internal;0.10.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.servo/servo-internal/ivy-0.10.1.xml
downloadGrapes: module revision found in cache: com.netflix.servo#servo-internal;0.10.1
found com.netflix.servo#servo-internal;0.10.1 in localm2
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.servo#servo-core;0.10.1→com.netflix.servo#servo-internal;0.10.1 [runtime→runtime()]
loadData of com.netflix.servo#servo-internal;0.10.1 of rootConf=default
== resolving dependencies com.netflix.servo#servo-core;0.10.1→com.netflix.servo#servo-internal;0.10.1 [runtime→compile]
loadData of com.netflix.servo#servo-internal;0.10.1 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.servo#servo-internal;0.10.1→org.slf4j#slf4j-api;1.7.25 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-internal;0.10.1→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-internal;0.10.1→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-internal;0.10.1→org.slf4j#slf4j-api;1.7.25 [runtime→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-internal;0.10.1→com.google.guava#guava;18.0 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-internal;0.10.1→com.google.guava#guava;18.0 [runtime→runtime()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-internal;0.10.1→com.google.guava#guava;18.0 [runtime→compile]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-internal;0.10.1→com.google.guava#guava;18.0 [runtime→compile()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-internal;0.10.1→com.google.code.findbugs#annotations;2.0.0 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-internal;0.10.1→com.google.code.findbugs#annotations;2.0.0 [runtime→runtime()]
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-internal;0.10.1→com.google.code.findbugs#annotations;2.0.0 [runtime→compile]
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-internal;0.10.1→com.google.code.findbugs#annotations;2.0.0 [runtime→compile()]
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-core;0.10.1→com.netflix.servo#servo-internal;0.10.1 [runtime→compile()]
loadData of com.netflix.servo#servo-internal;0.10.1 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.servo#servo-core;0.10.1 [runtime→compile()]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.google.guava#guava;18.0 [runtime→master()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.google.guava#guava;18.0 [runtime→runtime()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.google.guava#guava;18.0 [runtime→compile]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.google.guava#guava;18.0 [runtime→compile()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→runtime()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.netflix-commons#netflix-commons-util;0.1.1 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of com.netflix.netflix-commons#netflix-commons-util;0.1.1 of rootConf=default
using downloadGrapes to resolve com.netflix.netflix-commons#netflix-commons-util;0.1.1
downloadGrapes: Checking cache for: dependency: com.netflix.netflix-commons#netflix-commons-util;0.1.1 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.netflix-commons/netflix-commons-util/ivy-0.1.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.netflix-commons#netflix-commons-util;0.1.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.netflix-commons/netflix-commons-util/ivy-0.1.1.xml
downloadGrapes: module revision found in cache: com.netflix.netflix-commons#netflix-commons-util;0.1.1
found com.netflix.netflix-commons#netflix-commons-util;0.1.1 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.netflix-commons#netflix-commons-util;0.1.1 [runtime→runtime()]
loadData of com.netflix.netflix-commons#netflix-commons-util;0.1.1 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.netflix-commons#netflix-commons-util;0.1.1 [runtime→compile]
loadData of com.netflix.netflix-commons#netflix-commons-util;0.1.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.netflix.netflix-commons#netflix-commons-util;0.1.1→org.slf4j#slf4j-api;1.7.25 [compile→master()]
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-commons-util;0.1.1→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.netflix.netflix-commons#netflix-commons-util;0.1.1→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-commons-util;0.1.1→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.netflix-commons#netflix-commons-util;0.1.1 [runtime→compile()]
loadData of com.netflix.netflix-commons#netflix-commons-util;0.1.1 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→compile()]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxjava;1.2.0 [runtime→master()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxjava;1.2.0 [runtime→runtime()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxjava;1.2.0 [runtime→compile]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxjava;1.2.0 [runtime→compile()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxnetty;0.4.9 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
using downloadGrapes to resolve io.reactivex#rxnetty;0.4.9
downloadGrapes: Checking cache for: dependency: io.reactivex#rxnetty;0.4.9 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/io.reactivex/rxnetty/ivy-0.4.9.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for io.reactivex#rxnetty;0.4.9 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/io.reactivex/rxnetty/ivy-0.4.9.xml
downloadGrapes: module revision found in cache: io.reactivex#rxnetty;0.4.9
found io.reactivex#rxnetty;0.4.9 in localm2
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxnetty;0.4.9 [runtime→runtime()]
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxnetty;0.4.9 [runtime→compile]
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
== resolving dependencies io.reactivex#rxnetty;0.4.9→io.reactivex#rxjava;1.2.0 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty;0.4.9→io.reactivex#rxjava;1.2.0 [runtime→runtime()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty;0.4.9→io.reactivex#rxjava;1.2.0 [runtime→compile]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty;0.4.9→io.reactivex#rxjava;1.2.0 [runtime→compile()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty;0.4.9→io.netty#netty-codec-http;4.0.27.Final [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of io.netty#netty-codec-http;4.0.27.Final of rootConf=default
using downloadGrapes to resolve io.netty#netty-codec-http;4.0.27.Final
downloadGrapes: Checking cache for: dependency: io.netty#netty-codec-http;4.0.27.Final {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/io.netty/netty-codec-http/ivy-4.0.27.Final.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for io.netty#netty-codec-http;4.0.27.Final (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/io.netty/netty-codec-http/ivy-4.0.27.Final.xml
downloadGrapes: module revision found in cache: io.netty#netty-codec-http;4.0.27.Final
found io.netty#netty-codec-http;4.0.27.Final in localm2
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.reactivex#rxnetty;0.4.9→io.netty#netty-codec-http;4.0.27.Final [runtime→runtime()]
loadData of io.netty#netty-codec-http;4.0.27.Final of rootConf=default
== resolving dependencies io.reactivex#rxnetty;0.4.9→io.netty#netty-codec-http;4.0.27.Final [runtime→compile]
loadData of io.netty#netty-codec-http;4.0.27.Final of rootConf=default
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-codec-http;4.0.27.Final→io.netty#netty-codec;4.0.27.Final [compile→master()]
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of io.netty#netty-codec;4.0.27.Final of rootConf=default
using downloadGrapes to resolve io.netty#netty-codec;4.0.27.Final
downloadGrapes: Checking cache for: dependency: io.netty#netty-codec;4.0.27.Final {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/io.netty/netty-codec/ivy-4.0.27.Final.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for io.netty#netty-codec;4.0.27.Final (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/io.netty/netty-codec/ivy-4.0.27.Final.xml
downloadGrapes: module revision found in cache: io.netty#netty-codec;4.0.27.Final
found io.netty#netty-codec;4.0.27.Final in localm2
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-codec-http;4.0.27.Final→io.netty#netty-codec;4.0.27.Final [compile→compile()]
loadData of io.netty#netty-codec;4.0.27.Final of rootConf=default
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-codec;4.0.27.Final→io.netty#netty-transport;4.0.27.Final [compile→master()]
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of io.netty#netty-transport;4.0.27.Final of rootConf=default
using downloadGrapes to resolve io.netty#netty-transport;4.0.27.Final
downloadGrapes: Checking cache for: dependency: io.netty#netty-transport;4.0.27.Final {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/io.netty/netty-transport/ivy-4.0.27.Final.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for io.netty#netty-transport;4.0.27.Final (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/io.netty/netty-transport/ivy-4.0.27.Final.xml
downloadGrapes: module revision found in cache: io.netty#netty-transport;4.0.27.Final
found io.netty#netty-transport;4.0.27.Final in localm2
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-codec;4.0.27.Final→io.netty#netty-transport;4.0.27.Final [compile→compile()]
loadData of io.netty#netty-transport;4.0.27.Final of rootConf=default
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-transport;4.0.27.Final→io.netty#netty-buffer;4.0.27.Final [compile→master()]
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of io.netty#netty-buffer;4.0.27.Final of rootConf=default
using downloadGrapes to resolve io.netty#netty-buffer;4.0.27.Final
downloadGrapes: Checking cache for: dependency: io.netty#netty-buffer;4.0.27.Final {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/io.netty/netty-buffer/ivy-4.0.27.Final.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for io.netty#netty-buffer;4.0.27.Final (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/io.netty/netty-buffer/ivy-4.0.27.Final.xml
downloadGrapes: module revision found in cache: io.netty#netty-buffer;4.0.27.Final
found io.netty#netty-buffer;4.0.27.Final in localm2
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-transport;4.0.27.Final→io.netty#netty-buffer;4.0.27.Final [compile→compile()]
loadData of io.netty#netty-buffer;4.0.27.Final of rootConf=default
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-buffer;4.0.27.Final→io.netty#netty-common;4.0.27.Final [compile→master()]
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of io.netty#netty-common;4.0.27.Final of rootConf=default
using downloadGrapes to resolve io.netty#netty-common;4.0.27.Final
downloadGrapes: Checking cache for: dependency: io.netty#netty-common;4.0.27.Final {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/io.netty/netty-common/ivy-4.0.27.Final.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for io.netty#netty-common;4.0.27.Final (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/io.netty/netty-common/ivy-4.0.27.Final.xml
downloadGrapes: module revision found in cache: io.netty#netty-common;4.0.27.Final
found io.netty#netty-common;4.0.27.Final in localm2
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {optional=[compile(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.5 {optional=[compile(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-buffer;4.0.27.Final→io.netty#netty-common;4.0.27.Final [compile→compile()]
loadData of io.netty#netty-common;4.0.27.Final of rootConf=default
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {optional=[compile(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.5 {optional=[compile(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-codec-http;4.0.27.Final→io.netty#netty-codec;4.0.27.Final [compile→runtime()]
loadData of io.netty#netty-codec;4.0.27.Final of rootConf=default
== resolving dependencies io.netty#netty-codec-http;4.0.27.Final→io.netty#netty-codec;4.0.27.Final [compile→compile]
loadData of io.netty#netty-codec;4.0.27.Final of rootConf=default
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-codec;4.0.27.Final→io.netty#netty-transport;4.0.27.Final [runtime→runtime()]
loadData of io.netty#netty-transport;4.0.27.Final of rootConf=default
== resolving dependencies io.netty#netty-codec;4.0.27.Final→io.netty#netty-transport;4.0.27.Final [runtime→compile]
loadData of io.netty#netty-transport;4.0.27.Final of rootConf=default
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-transport;4.0.27.Final→io.netty#netty-buffer;4.0.27.Final [runtime→runtime()]
loadData of io.netty#netty-buffer;4.0.27.Final of rootConf=default
== resolving dependencies io.netty#netty-transport;4.0.27.Final→io.netty#netty-buffer;4.0.27.Final [runtime→compile]
loadData of io.netty#netty-buffer;4.0.27.Final of rootConf=default
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-buffer;4.0.27.Final→io.netty#netty-common;4.0.27.Final [runtime→runtime()]
loadData of io.netty#netty-common;4.0.27.Final of rootConf=default
== resolving dependencies io.netty#netty-buffer;4.0.27.Final→io.netty#netty-common;4.0.27.Final [runtime→compile]
loadData of io.netty#netty-common;4.0.27.Final of rootConf=default
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {optional=[compile(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.5 {optional=[compile(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-codec-http;4.0.27.Final→io.netty#netty-handler;4.0.27.Final [compile→master()]
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of io.netty#netty-handler;4.0.27.Final of rootConf=default
using downloadGrapes to resolve io.netty#netty-handler;4.0.27.Final
downloadGrapes: Checking cache for: dependency: io.netty#netty-handler;4.0.27.Final {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/io.netty/netty-handler/ivy-4.0.27.Final.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for io.netty#netty-handler;4.0.27.Final (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/io.netty/netty-handler/ivy-4.0.27.Final.xml
downloadGrapes: module revision found in cache: io.netty#netty-handler;4.0.27.Final
found io.netty#netty-handler;4.0.27.Final in localm2
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-codec-http;4.0.27.Final→io.netty#netty-handler;4.0.27.Final [compile→compile()]
loadData of io.netty#netty-handler;4.0.27.Final of rootConf=default
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-handler;4.0.27.Final→io.netty#netty-buffer;4.0.27.Final [compile→master()]
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
loadData of io.netty#netty-buffer;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-handler;4.0.27.Final→io.netty#netty-buffer;4.0.27.Final [compile→compile()]
loadData of io.netty#netty-buffer;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-handler;4.0.27.Final→io.netty#netty-transport;4.0.27.Final [compile→master()]
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
loadData of io.netty#netty-transport;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-handler;4.0.27.Final→io.netty#netty-transport;4.0.27.Final [compile→compile()]
loadData of io.netty#netty-transport;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-handler;4.0.27.Final→io.netty#netty-codec;4.0.27.Final [compile→master()]
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
loadData of io.netty#netty-codec;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-handler;4.0.27.Final→io.netty#netty-codec;4.0.27.Final [compile→compile()]
loadData of io.netty#netty-codec;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-codec-http;4.0.27.Final→io.netty#netty-handler;4.0.27.Final [compile→runtime()]
loadData of io.netty#netty-handler;4.0.27.Final of rootConf=default
== resolving dependencies io.netty#netty-codec-http;4.0.27.Final→io.netty#netty-handler;4.0.27.Final [compile→compile]
loadData of io.netty#netty-handler;4.0.27.Final of rootConf=default
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-handler;4.0.27.Final→io.netty#netty-buffer;4.0.27.Final [runtime→runtime()]
loadData of io.netty#netty-buffer;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-handler;4.0.27.Final→io.netty#netty-buffer;4.0.27.Final [runtime→compile]
loadData of io.netty#netty-buffer;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-handler;4.0.27.Final→io.netty#netty-transport;4.0.27.Final [runtime→runtime()]
loadData of io.netty#netty-transport;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-handler;4.0.27.Final→io.netty#netty-transport;4.0.27.Final [runtime→compile]
loadData of io.netty#netty-transport;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-handler;4.0.27.Final→io.netty#netty-codec;4.0.27.Final [runtime→runtime()]
loadData of io.netty#netty-codec;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-handler;4.0.27.Final→io.netty#netty-codec;4.0.27.Final [runtime→compile]
loadData of io.netty#netty-codec;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-codec-http;4.0.27.Final→io.netty#netty-codec;4.0.27.Final [runtime→runtime()]
loadData of io.netty#netty-codec;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-codec-http;4.0.27.Final→io.netty#netty-codec;4.0.27.Final [runtime→compile]
loadData of io.netty#netty-codec;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-codec-http;4.0.27.Final→io.netty#netty-handler;4.0.27.Final [runtime→runtime()]
loadData of io.netty#netty-handler;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-codec-http;4.0.27.Final→io.netty#netty-handler;4.0.27.Final [runtime→compile]
loadData of io.netty#netty-handler;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty;0.4.9→io.netty#netty-codec-http;4.0.27.Final [runtime→compile()]
loadData of io.netty#netty-codec-http;4.0.27.Final of rootConf=default
== resolving dependencies io.reactivex#rxnetty;0.4.9→io.netty#netty-transport-native-epoll;4.0.27.Final [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of io.netty#netty-transport-native-epoll;4.0.27.Final of rootConf=default
using downloadGrapes to resolve io.netty#netty-transport-native-epoll;4.0.27.Final
downloadGrapes: Checking cache for: dependency: io.netty#netty-transport-native-epoll;4.0.27.Final {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/io.netty/netty-transport-native-epoll/ivy-4.0.27.Final.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for io.netty#netty-transport-native-epoll;4.0.27.Final (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/io.netty/netty-transport-native-epoll/ivy-4.0.27.Final.xml
downloadGrapes: module revision found in cache: io.netty#netty-transport-native-epoll;4.0.27.Final
found io.netty#netty-transport-native-epoll;4.0.27.Final in localm2
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.reactivex#rxnetty;0.4.9→io.netty#netty-transport-native-epoll;4.0.27.Final [runtime→runtime()]
loadData of io.netty#netty-transport-native-epoll;4.0.27.Final of rootConf=default
== resolving dependencies io.reactivex#rxnetty;0.4.9→io.netty#netty-transport-native-epoll;4.0.27.Final [runtime→compile]
loadData of io.netty#netty-transport-native-epoll;4.0.27.Final of rootConf=default
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-transport-native-epoll;4.0.27.Final→io.netty#netty-common;4.0.27.Final [compile→master()]
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
loadData of io.netty#netty-common;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-transport-native-epoll;4.0.27.Final→io.netty#netty-common;4.0.27.Final [compile→compile()]
loadData of io.netty#netty-common;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-transport-native-epoll;4.0.27.Final→io.netty#netty-buffer;4.0.27.Final [compile→master()]
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
loadData of io.netty#netty-buffer;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-transport-native-epoll;4.0.27.Final→io.netty#netty-buffer;4.0.27.Final [compile→compile()]
loadData of io.netty#netty-buffer;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-transport-native-epoll;4.0.27.Final→io.netty#netty-transport;4.0.27.Final [compile→master()]
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
loadData of io.netty#netty-transport;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-transport-native-epoll;4.0.27.Final→io.netty#netty-transport;4.0.27.Final [compile→compile()]
loadData of io.netty#netty-transport;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-transport-native-epoll;4.0.27.Final→io.netty#netty-common;4.0.27.Final [runtime→runtime()]
loadData of io.netty#netty-common;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-transport-native-epoll;4.0.27.Final→io.netty#netty-common;4.0.27.Final [runtime→compile]
loadData of io.netty#netty-common;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-transport-native-epoll;4.0.27.Final→io.netty#netty-buffer;4.0.27.Final [runtime→runtime()]
loadData of io.netty#netty-buffer;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-transport-native-epoll;4.0.27.Final→io.netty#netty-buffer;4.0.27.Final [runtime→compile]
loadData of io.netty#netty-buffer;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-transport-native-epoll;4.0.27.Final→io.netty#netty-transport;4.0.27.Final [runtime→runtime()]
loadData of io.netty#netty-transport;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-transport-native-epoll;4.0.27.Final→io.netty#netty-transport;4.0.27.Final [runtime→compile]
loadData of io.netty#netty-transport;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty;0.4.9→io.netty#netty-transport-native-epoll;4.0.27.Final [runtime→compile()]
loadData of io.netty#netty-transport-native-epoll;4.0.27.Final of rootConf=default
== resolving dependencies io.reactivex#rxnetty;0.4.9→org.slf4j#slf4j-api;1.7.25 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty;0.4.9→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty;0.4.9→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty;0.4.9→org.slf4j#slf4j-api;1.7.25 [runtime→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxnetty;0.4.9 [runtime→compile()]
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxnetty-contexts;0.4.9 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of io.reactivex#rxnetty-contexts;0.4.9 of rootConf=default
using downloadGrapes to resolve io.reactivex#rxnetty-contexts;0.4.9
downloadGrapes: Checking cache for: dependency: io.reactivex#rxnetty-contexts;0.4.9 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/io.reactivex/rxnetty-contexts/ivy-0.4.9.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for io.reactivex#rxnetty-contexts;0.4.9 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/io.reactivex/rxnetty-contexts/ivy-0.4.9.xml
downloadGrapes: module revision found in cache: io.reactivex#rxnetty-contexts;0.4.9
found io.reactivex#rxnetty-contexts;0.4.9 in localm2
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxnetty-contexts;0.4.9 [runtime→runtime()]
loadData of io.reactivex#rxnetty-contexts;0.4.9 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxnetty-contexts;0.4.9 [runtime→compile]
loadData of io.reactivex#rxnetty-contexts;0.4.9 of rootConf=default
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies io.reactivex#rxnetty-contexts;0.4.9→io.reactivex#rxjava;1.2.0 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-contexts;0.4.9→io.reactivex#rxjava;1.2.0 [runtime→runtime()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-contexts;0.4.9→io.reactivex#rxjava;1.2.0 [runtime→compile]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-contexts;0.4.9→io.reactivex#rxjava;1.2.0 [runtime→compile()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-contexts;0.4.9→io.reactivex#rxnetty;0.4.9 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-contexts;0.4.9→io.reactivex#rxnetty;0.4.9 [runtime→runtime()]
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-contexts;0.4.9→io.reactivex#rxnetty;0.4.9 [runtime→compile]
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-contexts;0.4.9→io.reactivex#rxnetty;0.4.9 [runtime→compile()]
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxnetty-contexts;0.4.9 [runtime→compile()]
loadData of io.reactivex#rxnetty-contexts;0.4.9 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxnetty-servo;0.4.9 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of io.reactivex#rxnetty-servo;0.4.9 of rootConf=default
using downloadGrapes to resolve io.reactivex#rxnetty-servo;0.4.9
downloadGrapes: Checking cache for: dependency: io.reactivex#rxnetty-servo;0.4.9 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/io.reactivex/rxnetty-servo/ivy-0.4.9.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for io.reactivex#rxnetty-servo;0.4.9 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/io.reactivex/rxnetty-servo/ivy-0.4.9.xml
downloadGrapes: module revision found in cache: io.reactivex#rxnetty-servo;0.4.9
found io.reactivex#rxnetty-servo;0.4.9 in localm2
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxnetty-servo;0.4.9 [runtime→runtime()]
loadData of io.reactivex#rxnetty-servo;0.4.9 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxnetty-servo;0.4.9 [runtime→compile]
loadData of io.reactivex#rxnetty-servo;0.4.9 of rootConf=default
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
== resolving dependencies io.reactivex#rxnetty-servo;0.4.9→io.reactivex#rxjava;1.2.0 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-servo;0.4.9→io.reactivex#rxjava;1.2.0 [runtime→runtime()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-servo;0.4.9→io.reactivex#rxjava;1.2.0 [runtime→compile]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-servo;0.4.9→io.reactivex#rxjava;1.2.0 [runtime→compile()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-servo;0.4.9→io.reactivex#rxnetty;0.4.9 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-servo;0.4.9→io.reactivex#rxnetty;0.4.9 [runtime→runtime()]
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-servo;0.4.9→io.reactivex#rxnetty;0.4.9 [runtime→compile]
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-servo;0.4.9→io.reactivex#rxnetty;0.4.9 [runtime→compile()]
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-servo;0.4.9→com.netflix.servo#servo-core;0.10.1 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-servo;0.4.9→com.netflix.servo#servo-core;0.10.1 [runtime→runtime()]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-servo;0.4.9→com.netflix.servo#servo-core;0.10.1 [runtime→compile]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-servo;0.4.9→com.netflix.servo#servo-core;0.10.1 [runtime→compile()]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxnetty-servo;0.4.9 [runtime→compile()]
loadData of io.reactivex#rxnetty-servo;0.4.9 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→javax.inject#javax.inject;1 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→javax.inject#javax.inject;1 [runtime→runtime()]
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→javax.inject#javax.inject;1 [runtime→compile]
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→javax.inject#javax.inject;1 [runtime→compile()]
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→master()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.google.guava#guava;18.0 [runtime→master()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.google.guava#guava;18.0 [runtime→runtime()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.google.guava#guava;18.0 [runtime→compile]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.google.guava#guava;18.0 [runtime→compile()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→master()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→runtime()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.ribbon#ribbon-transport;2.2.5 [runtime→compile()]
loadData of com.netflix.ribbon#ribbon-transport;2.2.5 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.hystrix#hystrix-core;1.5.12 [runtime→master()]
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of com.netflix.hystrix#hystrix-core;1.5.12 of rootConf=default
using downloadGrapes to resolve com.netflix.hystrix#hystrix-core;1.5.12
downloadGrapes: Checking cache for: dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.hystrix/hystrix-core/ivy-1.5.12.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.hystrix#hystrix-core;1.5.12 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.hystrix/hystrix-core/ivy-1.5.12.xml
downloadGrapes: module revision found in cache: com.netflix.hystrix#hystrix-core;1.5.12
found com.netflix.hystrix#hystrix-core;1.5.12 in localm2
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.hystrix#hystrix-core;1.5.12 [runtime→runtime()]
loadData of com.netflix.hystrix#hystrix-core;1.5.12 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.hystrix#hystrix-core;1.5.12 [runtime→compile]
loadData of com.netflix.hystrix#hystrix-core;1.5.12 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→com.netflix.archaius#archaius-core;0.7.4 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→com.netflix.archaius#archaius-core;0.7.4 [compile→compile()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→io.reactivex#rxjava;1.2.0 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→io.reactivex#rxjava;1.2.0 [compile→compile()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→org.hdrhistogram#HdrHistogram;2.1.9 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of org.hdrhistogram#HdrHistogram;2.1.9 of rootConf=default
using downloadGrapes to resolve org.hdrhistogram#HdrHistogram;2.1.9
downloadGrapes: Checking cache for: dependency: org.hdrhistogram#HdrHistogram;2.1.9 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.hdrhistogram/HdrHistogram/ivy-2.1.9.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.hdrhistogram#HdrHistogram;2.1.9 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.hdrhistogram/HdrHistogram/ivy-2.1.9.xml
downloadGrapes: module revision found in cache: org.hdrhistogram#HdrHistogram;2.1.9
found org.hdrhistogram#HdrHistogram;2.1.9 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→org.hdrhistogram#HdrHistogram;2.1.9 [compile→compile()]
loadData of org.hdrhistogram#HdrHistogram;2.1.9 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→org.hdrhistogram#HdrHistogram;2.1.9 [compile→runtime()]
loadData of org.hdrhistogram#HdrHistogram;2.1.9 of rootConf=default
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→org.hdrhistogram#HdrHistogram;2.1.9 [compile→compile]
loadData of org.hdrhistogram#HdrHistogram;2.1.9 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→org.slf4j#slf4j-api;1.7.25 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→org.slf4j#slf4j-api;1.7.25 [runtime→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→com.netflix.archaius#archaius-core;0.7.4 [runtime→runtime()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→io.reactivex#rxjava;1.2.0 [runtime→runtime()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→io.reactivex#rxjava;1.2.0 [runtime→compile]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→org.hdrhistogram#HdrHistogram;2.1.9 [runtime→runtime()]
loadData of org.hdrhistogram#HdrHistogram;2.1.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→org.hdrhistogram#HdrHistogram;2.1.9 [runtime→compile]
loadData of org.hdrhistogram#HdrHistogram;2.1.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.hystrix#hystrix-core;1.5.12 [runtime→compile()]
loadData of com.netflix.hystrix#hystrix-core;1.5.12 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→javax.inject#javax.inject;1 [runtime→master()]
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→javax.inject#javax.inject;1 [runtime→runtime()]
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→javax.inject#javax.inject;1 [runtime→compile]
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→javax.inject#javax.inject;1 [runtime→compile()]
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→io.reactivex#rxjava;1.2.0 [runtime→master()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→io.reactivex#rxjava;1.2.0 [runtime→runtime()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→io.reactivex#rxjava;1.2.0 [runtime→compile]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→io.reactivex#rxjava;1.2.0 [runtime→compile()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→io.reactivex#rxnetty;0.4.9 [runtime→master()]
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→io.reactivex#rxnetty;0.4.9 [runtime→runtime()]
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→io.reactivex#rxnetty;0.4.9 [runtime→compile]
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→io.reactivex#rxnetty;0.4.9 [runtime→compile()]
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→commons-configuration#commons-configuration;1.8 [runtime→master()]
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→commons-configuration#commons-configuration;1.8 [runtime→runtime()]
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→commons-configuration#commons-configuration;1.8 [runtime→compile]
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→commons-configuration#commons-configuration;1.8 [runtime→compile()]
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.google.guava#guava;18.0 [runtime→master()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.google.guava#guava;18.0 [runtime→runtime()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.google.guava#guava;18.0 [runtime→compile]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.google.guava#guava;18.0 [runtime→compile()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→master()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→runtime()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon-httpclient;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-httpclient;2.2.5 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon-httpclient;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-httpclient;2.2.5 of rootConf=default
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→compile()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→compile()]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→commons-collections#commons-collections;3.2.2 [runtime→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of commons-collections#commons-collections;3.2.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→commons-collections#commons-collections;3.2.2 [runtime→runtime()]
loadData of commons-collections#commons-collections;3.2.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→commons-collections#commons-collections;3.2.2 [runtime→compile]
loadData of commons-collections#commons-collections;3.2.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→commons-collections#commons-collections;3.2.2 [runtime→compile()]
loadData of commons-collections#commons-collections;3.2.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→org.apache.httpcomponents#httpclient;4.5.5 [runtime→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→org.apache.httpcomponents#httpclient;4.5.5 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→org.apache.httpcomponents#httpclient;4.5.5 [runtime→compile]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→org.apache.httpcomponents#httpclient;4.5.5 [runtime→compile()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.sun.jersey#jersey-client;1.19.1 [runtime→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.sun.jersey#jersey-client;1.19.1 of rootConf=default
using downloadGrapes to resolve com.sun.jersey#jersey-client;1.19.1
downloadGrapes: Checking cache for: dependency: com.sun.jersey#jersey-client;1.19.1 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.sun.jersey/jersey-client/ivy-1.19.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.sun.jersey#jersey-client;1.19.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.sun.jersey/jersey-client/ivy-1.19.1.xml
downloadGrapes: module revision found in cache: com.sun.jersey#jersey-client;1.19.1
found com.sun.jersey#jersey-client;1.19.1 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.sun.jersey#jersey-client;1.19.1 [runtime→runtime()]
loadData of com.sun.jersey#jersey-client;1.19.1 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.sun.jersey#jersey-client;1.19.1 [runtime→compile]
loadData of com.sun.jersey#jersey-client;1.19.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.sun.jersey#jersey-client;1.19.1 [runtime→compile()]
loadData of com.sun.jersey#jersey-client;1.19.1 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.sun.jersey.contribs#jersey-apache-client4;1.19.1 [runtime→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.sun.jersey.contribs#jersey-apache-client4;1.19.1 of rootConf=default
using downloadGrapes to resolve com.sun.jersey.contribs#jersey-apache-client4;1.19.1
downloadGrapes: Checking cache for: dependency: com.sun.jersey.contribs#jersey-apache-client4;1.19.1 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.sun.jersey.contribs/jersey-apache-client4/ivy-1.19.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.sun.jersey.contribs#jersey-apache-client4;1.19.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.sun.jersey.contribs/jersey-apache-client4/ivy-1.19.1.xml
downloadGrapes: module revision found in cache: com.sun.jersey.contribs#jersey-apache-client4;1.19.1
found com.sun.jersey.contribs#jersey-apache-client4;1.19.1 in localm2
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.sun.jersey.contribs#jersey-apache-client4;1.19.1 [runtime→runtime()]
loadData of com.sun.jersey.contribs#jersey-apache-client4;1.19.1 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.sun.jersey.contribs#jersey-apache-client4;1.19.1 [runtime→compile]
loadData of com.sun.jersey.contribs#jersey-apache-client4;1.19.1 of rootConf=default
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.sun.jersey.contribs#jersey-apache-client4;1.19.1→org.apache.httpcomponents#httpclient;4.5.5 [compile→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.sun.jersey.contribs#jersey-apache-client4;1.19.1→org.apache.httpcomponents#httpclient;4.5.5 [compile→compile()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.sun.jersey.contribs#jersey-apache-client4;1.19.1→org.apache.httpcomponents#httpclient;4.5.5 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.sun.jersey.contribs#jersey-apache-client4;1.19.1→org.apache.httpcomponents#httpclient;4.5.5 [runtime→compile]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.sun.jersey.contribs#jersey-apache-client4;1.19.1 [runtime→compile()]
loadData of com.sun.jersey.contribs#jersey-apache-client4;1.19.1 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.servo#servo-core;0.10.1 [runtime→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.servo#servo-core;0.10.1 [runtime→runtime()]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.servo#servo-core;0.10.1 [runtime→compile]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.servo#servo-core;0.10.1 [runtime→compile()]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.google.guava#guava;18.0 [runtime→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.google.guava#guava;18.0 [runtime→runtime()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.google.guava#guava;18.0 [runtime→compile]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.google.guava#guava;18.0 [runtime→compile()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→runtime()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.netflix-commons#netflix-commons-util;0.1.1 [runtime→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.netflix.netflix-commons#netflix-commons-util;0.1.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.netflix-commons#netflix-commons-util;0.1.1 [runtime→runtime()]
loadData of com.netflix.netflix-commons#netflix-commons-util;0.1.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.netflix-commons#netflix-commons-util;0.1.1 [runtime→compile]
loadData of com.netflix.netflix-commons#netflix-commons-util;0.1.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.netflix-commons#netflix-commons-util;0.1.1 [runtime→compile()]
loadData of com.netflix.netflix-commons#netflix-commons-util;0.1.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-consul-all/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-consul-all/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE in jcenter
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-consul-bus/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-consul-bus/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-consul/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-consul/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-consul-core/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-consul-core/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE→org.apache.httpcomponents#httpclient;4.5.2 [compile→master()]
loadData of org.apache.httpcomponents#httpclient;4.5.2 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE→org.apache.httpcomponents#httpclient;4.5.5 [compile→master()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE→org.apache.httpcomponents#httpclient;4.5.2 [compile→compile()]
loadData of org.apache.httpcomponents#httpclient;4.5.2 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE→org.apache.httpcomponents#httpclient;4.5.5 [compile→compile()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE→org.apache.httpcomponents#httpcore;4.4.5 [compile→master()]
loadData of org.apache.httpcomponents#httpcore;4.4.5 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE→org.apache.httpcomponents#httpcore;4.4.9 [compile→master()]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE→org.apache.httpcomponents#httpcore;4.4.5 [compile→compile()]
loadData of org.apache.httpcomponents#httpcore;4.4.5 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE→org.apache.httpcomponents#httpcore;4.4.9 [compile→compile()]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→com.ecwid.consul#consul-api;1.3.0 [compile→master()]
loadData of com.ecwid.consul#consul-api;1.3.0 of rootConf=default
using downloadGrapes to resolve com.ecwid.consul#consul-api;1.3.0
downloadGrapes: Checking cache for: dependency: com.ecwid.consul#consul-api;1.3.0 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.ecwid.consul/consul-api/ivy-1.3.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.ecwid.consul#consul-api;1.3.0 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.ecwid.consul/consul-api/ivy-1.3.0.xml
downloadGrapes: module revision found in cache: com.ecwid.consul#consul-api;1.3.0
found com.ecwid.consul#consul-api;1.3.0 in localm2
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→com.ecwid.consul#consul-api;1.3.0 [compile→compile()]
loadData of com.ecwid.consul#consul-api;1.3.0 of rootConf=default
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→com.google.code.gson#gson;2.3.1 [compile→master()]
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
loadData of com.google.code.gson#gson;2.3.1 of rootConf=default
using downloadGrapes to resolve com.google.code.gson#gson;2.3.1
downloadGrapes: Checking cache for: dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.google.code.gson/gson/ivy-2.3.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.google.code.gson#gson;2.3.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.google.code.gson/gson/ivy-2.3.1.xml
downloadGrapes: module revision found in cache: com.google.code.gson#gson;2.3.1
found com.google.code.gson#gson;2.3.1 in localm2
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→com.google.code.gson#gson;2.3.1 [compile→compile()]
loadData of com.google.code.gson#gson;2.3.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→org.apache.httpcomponents#httpcore;4.4.5 [compile→master()]
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
loadData of org.apache.httpcomponents#httpcore;4.4.5 of rootConf=default
default is evicted. Skip loading
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→org.apache.httpcomponents#httpcore;4.4.9 [compile→master()]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→org.apache.httpcomponents#httpcore;4.4.5 [compile→compile()]
loadData of org.apache.httpcomponents#httpcore;4.4.5 of rootConf=default
default is evicted. Skip loading
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→org.apache.httpcomponents#httpcore;4.4.9 [compile→compile()]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→org.apache.httpcomponents#httpclient;4.5.2 [compile→master()]
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
loadData of org.apache.httpcomponents#httpclient;4.5.2 of rootConf=default
default is evicted. Skip loading
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→org.apache.httpcomponents#httpclient;4.5.5 [compile→master()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→org.apache.httpcomponents#httpclient;4.5.2 [compile→compile()]
loadData of org.apache.httpcomponents#httpclient;4.5.2 of rootConf=default
default is evicted. Skip loading
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→org.apache.httpcomponents#httpclient;4.5.5 [compile→compile()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→com.google.code.gson#gson;2.3.1 [compile→master()]
loadData of com.google.code.gson#gson;2.3.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→com.google.code.gson#gson;2.3.1 [compile→compile()]
loadData of com.google.code.gson#gson;2.3.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.apache.httpcomponents#httpclient;4.5.2 [compile→master()]
loadData of org.apache.httpcomponents#httpclient;4.5.2 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.apache.httpcomponents#httpclient;4.5.5 [compile→master()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.apache.httpcomponents#httpclient;4.5.2 [compile→compile()]
loadData of org.apache.httpcomponents#httpclient;4.5.2 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.apache.httpcomponents#httpclient;4.5.5 [compile→compile()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.apache.httpcomponents#httpcore;4.4.5 [compile→master()]
loadData of org.apache.httpcomponents#httpcore;4.4.5 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.apache.httpcomponents#httpcore;4.4.9 [compile→master()]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.apache.httpcomponents#httpcore;4.4.5 [compile→compile()]
loadData of org.apache.httpcomponents#httpcore;4.4.5 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.apache.httpcomponents#httpcore;4.4.9 [compile→compile()]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-consul-binder/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-consul-binder/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-stream/ivy-1.3.3.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-stream/ivy-1.3.3.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE
found org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-actuator/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-actuator/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
found org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-actuator/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-actuator/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE
found org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [compile→runtime()]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [compile→compile]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-validation/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-validation/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE
found org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-el;8.5.31 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.apache.tomcat.embed#tomcat-embed-el;8.5.31 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-el;8.5.31 [compile→compile()]
loadData of org.apache.tomcat.embed#tomcat-embed-el;8.5.31 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE→org.hibernate#hibernate-validator;5.3.6.Final [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.hibernate#hibernate-validator;5.3.6.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE→org.hibernate#hibernate-validator;5.3.6.Final [compile→compile()]
loadData of org.hibernate#hibernate-validator;5.3.6.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE [compile→runtime()]
loadData of org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE [compile→compile]
loadData of org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-el;8.5.31 [runtime→runtime()]
loadData of org.apache.tomcat.embed#tomcat-embed-el;8.5.31 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-el;8.5.31 [runtime→compile]
loadData of org.apache.tomcat.embed#tomcat-embed-el;8.5.31 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE→org.hibernate#hibernate-validator;5.3.6.Final [runtime→runtime()]
loadData of org.hibernate#hibernate-validator;5.3.6.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE→org.hibernate#hibernate-validator;5.3.6.Final [runtime→compile]
loadData of org.hibernate#hibernate-validator;5.3.6.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework#spring-messaging;4.3.18.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-messaging/ivy-4.3.18.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework#spring-messaging;4.3.18.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-messaging/ivy-4.3.18.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework#spring-messaging;4.3.18.RELEASE
found org.springframework#spring-messaging;4.3.18.RELEASE in localm2
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
== resolving dependencies org.springframework#spring-messaging;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-messaging;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-messaging;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-messaging;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-messaging;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-messaging;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [compile→runtime()]
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [compile→compile]
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
== resolving dependencies org.springframework#spring-messaging;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-messaging;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-messaging;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-messaging;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-messaging;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-messaging;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.integration#spring-integration-core;4.3.17.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.integration/spring-integration-core/ivy-4.3.17.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.integration#spring-integration-core;4.3.17.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.integration/spring-integration-core/ivy-4.3.17.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.integration#spring-integration-core;4.3.17.RELEASE
found org.springframework.integration#spring-integration-core;4.3.17.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [compile→compile()]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-tx;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-tx;4.3.18.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework#spring-tx;4.3.18.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-tx/ivy-4.3.18.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework#spring-tx;4.3.18.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-tx/ivy-4.3.18.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework#spring-tx;4.3.18.RELEASE
found org.springframework#spring-tx;4.3.18.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-tx;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-tx;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework#spring-tx;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tx;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tx;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tx;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework.retry#spring-retry;1.2.2.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework.retry#spring-retry;1.2.2.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.retry#spring-retry;1.2.2.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.retry/spring-retry/ivy-1.2.2.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.retry#spring-retry;1.2.2.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.retry/spring-retry/ivy-1.2.2.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.retry#spring-retry;1.2.2.RELEASE
found org.springframework.retry#spring-retry;1.2.2.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.13.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework.retry#spring-retry;1.2.2.RELEASE [compile→compile()]
loadData of org.springframework.retry#spring-retry;1.2.2.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.13.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.retry#spring-retry;1.2.2.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.13.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.13.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.13.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.13.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.13.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.retry#spring-retry;1.2.2.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework.retry#spring-retry;1.2.2.RELEASE [compile→runtime()]
loadData of org.springframework.retry#spring-retry;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework.retry#spring-retry;1.2.2.RELEASE [compile→compile]
loadData of org.springframework.retry#spring-retry;1.2.2.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.13.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.retry#spring-retry;1.2.2.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.retry#spring-retry;1.2.2.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [compile→runtime()]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [compile→compile]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-tx;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-tx;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-tx;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-tx;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework#spring-tx;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tx;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tx;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tx;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework.retry#spring-retry;1.2.2.RELEASE [runtime→runtime()]
loadData of org.springframework.retry#spring-retry;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework.retry#spring-retry;1.2.2.RELEASE [runtime→compile]
loadData of org.springframework.retry#spring-retry;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.integration/spring-integration-jmx/ivy-4.3.17.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.integration/spring-integration-jmx/ivy-4.3.17.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE
found org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE [compile→compile()]
loadData of org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [compile→compile()]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE [compile→runtime()]
loadData of org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE [compile→compile]
loadData of org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [runtime→runtime()]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [runtime→compile]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework#spring-tuple;1.0.0.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-tuple;1.0.0.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework#spring-tuple;1.0.0.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework#spring-tuple;1.0.0.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-tuple/ivy-1.0.0.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework#spring-tuple;1.0.0.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-tuple/ivy-1.0.0.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework#spring-tuple;1.0.0.RELEASE
found org.springframework#spring-tuple;1.0.0.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework#spring-tuple;1.0.0.RELEASE [compile→compile()]
loadData of org.springframework#spring-tuple;1.0.0.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→com.esotericsoftware#kryo-shaded;3.0.3 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of com.esotericsoftware#kryo-shaded;3.0.3 of rootConf=default
using downloadGrapes to resolve com.esotericsoftware#kryo-shaded;3.0.3
downloadGrapes: Checking cache for: dependency: com.esotericsoftware#kryo-shaded;3.0.3 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.esotericsoftware/kryo-shaded/ivy-3.0.3.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.esotericsoftware#kryo-shaded;3.0.3 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.esotericsoftware/kryo-shaded/ivy-3.0.3.xml
downloadGrapes: module revision found in cache: com.esotericsoftware#kryo-shaded;3.0.3
found com.esotericsoftware#kryo-shaded;3.0.3 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→com.esotericsoftware#kryo-shaded;3.0.3 [compile→compile()]
loadData of com.esotericsoftware#kryo-shaded;3.0.3 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.esotericsoftware#kryo-shaded;3.0.3→com.esotericsoftware#minlog;1.3.0 [compile→master()]
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of com.esotericsoftware#minlog;1.3.0 of rootConf=default
using downloadGrapes to resolve com.esotericsoftware#minlog;1.3.0
downloadGrapes: Checking cache for: dependency: com.esotericsoftware#minlog;1.3.0 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.esotericsoftware/minlog/ivy-1.3.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.esotericsoftware#minlog;1.3.0 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.esotericsoftware/minlog/ivy-1.3.0.xml
downloadGrapes: module revision found in cache: com.esotericsoftware#minlog;1.3.0
found com.esotericsoftware#minlog;1.3.0 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.esotericsoftware#kryo-shaded;3.0.3→com.esotericsoftware#minlog;1.3.0 [compile→compile()]
loadData of com.esotericsoftware#minlog;1.3.0 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.esotericsoftware#kryo-shaded;3.0.3→org.objenesis#objenesis;2.1 [compile→master()]
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.objenesis#objenesis;2.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.esotericsoftware#kryo-shaded;3.0.3→org.objenesis#objenesis;2.1 [compile→compile()]
loadData of org.objenesis#objenesis;2.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework#spring-tuple;1.0.0.RELEASE [compile→runtime()]
loadData of org.springframework#spring-tuple;1.0.0.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework#spring-tuple;1.0.0.RELEASE [compile→compile]
loadData of org.springframework#spring-tuple;1.0.0.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→com.esotericsoftware#kryo-shaded;3.0.3 [runtime→runtime()]
loadData of com.esotericsoftware#kryo-shaded;3.0.3 of rootConf=default
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→com.esotericsoftware#kryo-shaded;3.0.3 [runtime→compile]
loadData of com.esotericsoftware#kryo-shaded;3.0.3 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.esotericsoftware#kryo-shaded;3.0.3→com.esotericsoftware#minlog;1.3.0 [runtime→runtime()]
loadData of com.esotericsoftware#minlog;1.3.0 of rootConf=default
== resolving dependencies com.esotericsoftware#kryo-shaded;3.0.3→com.esotericsoftware#minlog;1.3.0 [runtime→compile]
loadData of com.esotericsoftware#minlog;1.3.0 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.esotericsoftware#kryo-shaded;3.0.3→org.objenesis#objenesis;2.1 [runtime→runtime()]
loadData of org.objenesis#objenesis;2.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.esotericsoftware#kryo-shaded;3.0.3→org.objenesis#objenesis;2.1 [runtime→compile]
loadData of org.objenesis#objenesis;2.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.integration/spring-integration-tuple/ivy-1.0.0.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.integration/spring-integration-tuple/ivy-1.0.0.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE
found org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE [compile→compile()]
loadData of org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE→org.springframework#spring-tuple;1.0.0.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework#spring-tuple;1.0.0.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE→org.springframework#spring-tuple;1.0.0.RELEASE [compile→compile()]
loadData of org.springframework#spring-tuple;1.0.0.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [compile→compile()]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE [compile→runtime()]
loadData of org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE [compile→compile]
loadData of org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE→org.springframework#spring-tuple;1.0.0.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-tuple;1.0.0.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE→org.springframework#spring-tuple;1.0.0.RELEASE [runtime→compile]
loadData of org.springframework#spring-tuple;1.0.0.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [runtime→runtime()]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [runtime→compile]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.retry#spring-retry;1.2.2.RELEASE [compile→master()]
loadData of org.springframework.retry#spring-retry;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.retry#spring-retry;1.2.2.RELEASE [compile→compile()]
loadData of org.springframework.retry#spring-retry;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [compile→default]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [compile→runtime]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [runtime→runtime()]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [runtime→compile]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE [runtime→runtime()]
loadData of org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE [runtime→compile]
loadData of org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework#spring-tuple;1.0.0.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-tuple;1.0.0.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework#spring-tuple;1.0.0.RELEASE [runtime→compile]
loadData of org.springframework#spring-tuple;1.0.0.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE [runtime→runtime()]
loadData of org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE [runtime→compile]
loadData of org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.retry#spring-retry;1.2.2.RELEASE [runtime→runtime()]
loadData of org.springframework.retry#spring-retry;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.retry#spring-retry;1.2.2.RELEASE [runtime→compile]
loadData of org.springframework.retry#spring-retry;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [compile→master]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-bus/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-bus/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [compile→master()]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [compile→compile()]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE→org.apache.httpcomponents#httpclient;4.5.2 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpclient;4.5.2 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE→org.apache.httpcomponents#httpclient;4.5.5 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE→org.apache.httpcomponents#httpclient;4.5.5 [runtime→compile]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE→org.apache.httpcomponents#httpcore;4.4.5 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpcore;4.4.5 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE→org.apache.httpcomponents#httpcore;4.4.9 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE→org.apache.httpcomponents#httpcore;4.4.9 [runtime→compile]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→com.ecwid.consul#consul-api;1.3.0 [runtime→runtime()]
loadData of com.ecwid.consul#consul-api;1.3.0 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→com.ecwid.consul#consul-api;1.3.0 [runtime→compile]
loadData of com.ecwid.consul#consul-api;1.3.0 of rootConf=default
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→com.google.code.gson#gson;2.3.1 [runtime→runtime()]
loadData of com.google.code.gson#gson;2.3.1 of rootConf=default
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→com.google.code.gson#gson;2.3.1 [runtime→compile]
loadData of com.google.code.gson#gson;2.3.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→org.apache.httpcomponents#httpcore;4.4.5 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpcore;4.4.5 of rootConf=default
default is evicted. Skip loading
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→org.apache.httpcomponents#httpcore;4.4.9 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→org.apache.httpcomponents#httpcore;4.4.9 [runtime→compile]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→org.apache.httpcomponents#httpclient;4.5.2 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpclient;4.5.2 of rootConf=default
default is evicted. Skip loading
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→org.apache.httpcomponents#httpclient;4.5.5 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→org.apache.httpcomponents#httpclient;4.5.5 [runtime→compile]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→com.google.code.gson#gson;2.3.1 [runtime→runtime()]
loadData of com.google.code.gson#gson;2.3.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→com.google.code.gson#gson;2.3.1 [runtime→compile]
loadData of com.google.code.gson#gson;2.3.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.apache.httpcomponents#httpclient;4.5.2 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpclient;4.5.2 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.apache.httpcomponents#httpclient;4.5.5 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.apache.httpcomponents#httpclient;4.5.5 [runtime→compile]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.apache.httpcomponents#httpcore;4.4.5 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpcore;4.4.5 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.apache.httpcomponents#httpcore;4.4.9 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.apache.httpcomponents#httpcore;4.4.9 [runtime→compile]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [runtime→runtime()]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [runtime→compile]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-consul-config/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-consul-config/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-consul-config/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-consul-config/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-consul-discovery/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-consul-discovery/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-consul-discovery/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-consul-discovery/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-ribbon/ivy-1.4.5.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-ribbon/ivy-1.4.5.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE
found org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-netflix-ribbon/ivy-1.4.5.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-netflix-ribbon/ivy-1.4.5.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE
found org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon;2.2.5 [compile→master()]
loadData of com.netflix.ribbon#ribbon;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon;2.2.5 [compile→compile()]
loadData of com.netflix.ribbon#ribbon;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon-core;2.2.5 [compile→master()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon-core;2.2.5 [compile→compile()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon-httpclient;2.2.5 [compile→master()]
loadData of com.netflix.ribbon#ribbon-httpclient;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon-httpclient;2.2.5 [compile→compile()]
loadData of com.netflix.ribbon#ribbon-httpclient;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [compile→master()]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [compile→compile()]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→io.reactivex#rxjava;1.2.0 [compile→master()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→io.reactivex#rxjava;1.2.0 [compile→compile()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→joda-time#joda-time;2.7 [compile→master()]
loadData of joda-time#joda-time;2.7 of rootConf=default
using downloadGrapes to resolve joda-time#joda-time;2.7
downloadGrapes: Checking cache for: dependency: joda-time#joda-time;2.7 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/joda-time/joda-time/ivy-2.7.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for joda-time#joda-time;2.7 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/joda-time/joda-time/ivy-2.7.xml
downloadGrapes: module revision found in cache: joda-time#joda-time;2.7
found joda-time#joda-time;2.7 in localm2
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→joda-time#joda-time;2.7 [compile→compile()]
loadData of joda-time#joda-time;2.7 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon-httpclient;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-httpclient;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon-httpclient;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-httpclient;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→io.reactivex#rxjava;1.2.0 [runtime→runtime()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→io.reactivex#rxjava;1.2.0 [runtime→compile]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→joda-time#joda-time;2.7 [runtime→runtime()]
loadData of joda-time#joda-time;2.7 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→joda-time#joda-time;2.7 [runtime→compile]
loadData of joda-time#joda-time;2.7 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-security/ivy-1.2.3.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-security/ivy-1.2.3.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE
found org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE in jcenter
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-security/ivy-1.2.3.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-security/ivy-1.2.3.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE
found org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE→org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-security/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-security/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE
found org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE→org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework.security#spring-security-config;4.2.7.RELEASE [compile→master()]
loadData of org.springframework.security#spring-security-config;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework.security#spring-security-config;4.2.7.RELEASE [compile→compile()]
loadData of org.springframework.security#spring-security-config;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework.security#spring-security-web;4.2.7.RELEASE [compile→master()]
loadData of org.springframework.security#spring-security-web;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework.security#spring-security-web;4.2.7.RELEASE [compile→compile()]
loadData of org.springframework.security#spring-security-web;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE→org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE→org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework.security#spring-security-config;4.2.7.RELEASE [runtime→runtime()]
loadData of org.springframework.security#spring-security-config;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework.security#spring-security-config;4.2.7.RELEASE [runtime→compile]
loadData of org.springframework.security#spring-security-config;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework.security#spring-security-web;4.2.7.RELEASE [runtime→runtime()]
loadData of org.springframework.security#spring-security-web;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework.security#spring-security-web;4.2.7.RELEASE [runtime→compile]
loadData of org.springframework.security#spring-security-web;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-aws/ivy-1.2.3.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-aws/ivy-1.2.3.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE
found org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE in jcenter
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-aws-context/ivy-1.2.3.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-aws-context/ivy-1.2.3.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE
found org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-aws-core/ivy-1.2.3.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-aws-core/ivy-1.2.3.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE
found org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-core;1.11.125 [compile→master()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
using downloadGrapes to resolve com.amazonaws#aws-java-sdk-core;1.11.125
downloadGrapes: Checking cache for: dependency: com.amazonaws#aws-java-sdk-core;1.11.125 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.amazonaws/aws-java-sdk-core/ivy-1.11.125.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.amazonaws#aws-java-sdk-core;1.11.125 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.amazonaws/aws-java-sdk-core/ivy-1.11.125.xml
downloadGrapes: module revision found in cache: com.amazonaws#aws-java-sdk-core;1.11.125
found com.amazonaws#aws-java-sdk-core;1.11.125 in localm2
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-core;1.11.125 [compile→compile()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→commons-logging#commons-logging;1.1.3 [compile→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
loadData of commons-logging#commons-logging;1.1.3 of rootConf=default
default is evicted. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→commons-logging#commons-logging;1.2 [compile→master()]
loadData of commons-logging#commons-logging;1.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→commons-logging#commons-logging;1.1.3 [compile→compile()]
loadData of commons-logging#commons-logging;1.1.3 of rootConf=default
default is evicted. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→commons-logging#commons-logging;1.2 [compile→compile()]
loadData of commons-logging#commons-logging;1.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→org.apache.httpcomponents#httpclient;4.5.5 [compile→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→org.apache.httpcomponents#httpclient;4.5.5 [compile→compile()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→software.amazon.ion#ion-java;1.0.2 [compile→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
loadData of software.amazon.ion#ion-java;1.0.2 of rootConf=default
using downloadGrapes to resolve software.amazon.ion#ion-java;1.0.2
downloadGrapes: Checking cache for: dependency: software.amazon.ion#ion-java;1.0.2 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/software.amazon.ion/ion-java/ivy-1.0.2.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for software.amazon.ion#ion-java;1.0.2 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/software.amazon.ion/ion-java/ivy-1.0.2.xml
downloadGrapes: module revision found in cache: software.amazon.ion#ion-java;1.0.2
found software.amazon.ion#ion-java;1.0.2 in localm2
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→software.amazon.ion#ion-java;1.0.2 [compile→compile()]
loadData of software.amazon.ion#ion-java;1.0.2 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 [compile→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 of rootConf=default
using downloadGrapes to resolve com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11
downloadGrapes: Checking cache for: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.dataformat/jackson-dataformat-cbor/ivy-2.8.11.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.dataformat/jackson-dataformat-cbor/ivy-2.8.11.xml
downloadGrapes: module revision found in cache: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11
found com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 in localm2
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {test=[runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {test=[runtime(), master()]}
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 [compile→compile()]
loadData of com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {test=[runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {test=[runtime(), master()]}
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11→com.fasterxml.jackson.core#jackson-core;2.8.11 [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {test=[runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {test=[runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {test=[runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {test=[runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11→com.fasterxml.jackson.core#jackson-core;2.8.11 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→joda-time#joda-time;2.9.9 [compile→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
loadData of joda-time#joda-time;2.9.9 of rootConf=default
using downloadGrapes to resolve joda-time#joda-time;2.9.9
downloadGrapes: Checking cache for: dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/joda-time/joda-time/ivy-2.9.9.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for joda-time#joda-time;2.9.9 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/joda-time/joda-time/ivy-2.9.9.xml
downloadGrapes: module revision found in cache: joda-time#joda-time;2.9.9
found joda-time#joda-time;2.9.9 in localm2
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→joda-time#joda-time;2.9.9 [compile→compile()]
loadData of joda-time#joda-time;2.9.9 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→joda-time#joda-time;2.9.9 [compile→runtime()]
loadData of joda-time#joda-time;2.9.9 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→joda-time#joda-time;2.9.9 [compile→compile]
loadData of joda-time#joda-time;2.9.9 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-s3;1.11.125 [compile→master()]
loadData of com.amazonaws#aws-java-sdk-s3;1.11.125 of rootConf=default
using downloadGrapes to resolve com.amazonaws#aws-java-sdk-s3;1.11.125
downloadGrapes: Checking cache for: dependency: com.amazonaws#aws-java-sdk-s3;1.11.125 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.amazonaws/aws-java-sdk-s3/ivy-1.11.125.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.amazonaws#aws-java-sdk-s3;1.11.125 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.amazonaws/aws-java-sdk-s3/ivy-1.11.125.xml
downloadGrapes: module revision found in cache: com.amazonaws#aws-java-sdk-s3;1.11.125
found com.amazonaws#aws-java-sdk-s3;1.11.125 in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-s3;1.11.125 [compile→compile()]
loadData of com.amazonaws#aws-java-sdk-s3;1.11.125 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-s3;1.11.125→com.amazonaws#aws-java-sdk-kms;1.11.125 [compile→master()]
loadData of com.amazonaws#aws-java-sdk-kms;1.11.125 of rootConf=default
using downloadGrapes to resolve com.amazonaws#aws-java-sdk-kms;1.11.125
downloadGrapes: Checking cache for: dependency: com.amazonaws#aws-java-sdk-kms;1.11.125 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.amazonaws/aws-java-sdk-kms/ivy-1.11.125.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.amazonaws#aws-java-sdk-kms;1.11.125 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.amazonaws/aws-java-sdk-kms/ivy-1.11.125.xml
downloadGrapes: module revision found in cache: com.amazonaws#aws-java-sdk-kms;1.11.125
found com.amazonaws#aws-java-sdk-kms;1.11.125 in localm2
== resolving dependencies com.amazonaws#aws-java-sdk-s3;1.11.125→com.amazonaws#aws-java-sdk-kms;1.11.125 [compile→compile()]
loadData of com.amazonaws#aws-java-sdk-kms;1.11.125 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-kms;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [compile→master()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-kms;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [compile→compile()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-kms;1.11.125→com.amazonaws#jmespath-java;1.11.125 [compile→master()]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
using downloadGrapes to resolve com.amazonaws#jmespath-java;1.11.125
downloadGrapes: Checking cache for: dependency: com.amazonaws#jmespath-java;1.11.125 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.amazonaws/jmespath-java/ivy-1.11.125.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.amazonaws#jmespath-java;1.11.125 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.amazonaws/jmespath-java/ivy-1.11.125.xml
downloadGrapes: module revision found in cache: com.amazonaws#jmespath-java;1.11.125
found com.amazonaws#jmespath-java;1.11.125 in localm2
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.amazonaws#aws-java-sdk-kms;1.11.125→com.amazonaws#jmespath-java;1.11.125 [compile→compile()]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.amazonaws#jmespath-java;1.11.125→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#jmespath-java;1.11.125→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-s3;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [compile→master()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-s3;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [compile→compile()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-s3;1.11.125→com.amazonaws#jmespath-java;1.11.125 [compile→master()]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-s3;1.11.125→com.amazonaws#jmespath-java;1.11.125 [compile→compile()]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-ec2;1.11.125 [compile→master()]
loadData of com.amazonaws#aws-java-sdk-ec2;1.11.125 of rootConf=default
using downloadGrapes to resolve com.amazonaws#aws-java-sdk-ec2;1.11.125
downloadGrapes: Checking cache for: dependency: com.amazonaws#aws-java-sdk-ec2;1.11.125 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.amazonaws/aws-java-sdk-ec2/ivy-1.11.125.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.amazonaws#aws-java-sdk-ec2;1.11.125 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.amazonaws/aws-java-sdk-ec2/ivy-1.11.125.xml
downloadGrapes: module revision found in cache: com.amazonaws#aws-java-sdk-ec2;1.11.125
found com.amazonaws#aws-java-sdk-ec2;1.11.125 in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-ec2;1.11.125 [compile→compile()]
loadData of com.amazonaws#aws-java-sdk-ec2;1.11.125 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-ec2;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [compile→master()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-ec2;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [compile→compile()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-ec2;1.11.125→com.amazonaws#jmespath-java;1.11.125 [compile→master()]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-ec2;1.11.125→com.amazonaws#jmespath-java;1.11.125 [compile→compile()]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-cloudformation;1.11.125 [compile→master()]
loadData of com.amazonaws#aws-java-sdk-cloudformation;1.11.125 of rootConf=default
using downloadGrapes to resolve com.amazonaws#aws-java-sdk-cloudformation;1.11.125
downloadGrapes: Checking cache for: dependency: com.amazonaws#aws-java-sdk-cloudformation;1.11.125 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.amazonaws/aws-java-sdk-cloudformation/ivy-1.11.125.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.amazonaws#aws-java-sdk-cloudformation;1.11.125 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.amazonaws/aws-java-sdk-cloudformation/ivy-1.11.125.xml
downloadGrapes: module revision found in cache: com.amazonaws#aws-java-sdk-cloudformation;1.11.125
found com.amazonaws#aws-java-sdk-cloudformation;1.11.125 in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-cloudformation;1.11.125 [compile→compile()]
loadData of com.amazonaws#aws-java-sdk-cloudformation;1.11.125 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-cloudformation;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [compile→master()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-cloudformation;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [compile→compile()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-cloudformation;1.11.125→com.amazonaws#jmespath-java;1.11.125 [compile→master()]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-cloudformation;1.11.125→com.amazonaws#jmespath-java;1.11.125 [compile→compile()]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [compile→master()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [compile→master()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-core;1.11.125 [runtime→runtime()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-core;1.11.125 [runtime→compile]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→commons-logging#commons-logging;1.1.3 [runtime→runtime()]
loadData of commons-logging#commons-logging;1.1.3 of rootConf=default
default is evicted. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→commons-logging#commons-logging;1.2 [runtime→runtime()]
loadData of commons-logging#commons-logging;1.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→commons-logging#commons-logging;1.2 [runtime→compile]
loadData of commons-logging#commons-logging;1.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→org.apache.httpcomponents#httpclient;4.5.5 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→org.apache.httpcomponents#httpclient;4.5.5 [runtime→compile]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→software.amazon.ion#ion-java;1.0.2 [runtime→runtime()]
loadData of software.amazon.ion#ion-java;1.0.2 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→software.amazon.ion#ion-java;1.0.2 [runtime→compile]
loadData of software.amazon.ion#ion-java;1.0.2 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 [runtime→runtime()]
loadData of com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 [runtime→compile]
loadData of com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {test=[runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {test=[runtime(), master()]}
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→joda-time#joda-time;2.9.9 [runtime→runtime()]
loadData of joda-time#joda-time;2.9.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→joda-time#joda-time;2.9.9 [runtime→compile]
loadData of joda-time#joda-time;2.9.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-s3;1.11.125 [runtime→runtime()]
loadData of com.amazonaws#aws-java-sdk-s3;1.11.125 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-s3;1.11.125 [runtime→compile]
loadData of com.amazonaws#aws-java-sdk-s3;1.11.125 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-s3;1.11.125→com.amazonaws#aws-java-sdk-kms;1.11.125 [runtime→runtime()]
loadData of com.amazonaws#aws-java-sdk-kms;1.11.125 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-s3;1.11.125→com.amazonaws#aws-java-sdk-kms;1.11.125 [runtime→compile]
loadData of com.amazonaws#aws-java-sdk-kms;1.11.125 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-kms;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [runtime→runtime()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-kms;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [runtime→compile]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-kms;1.11.125→com.amazonaws#jmespath-java;1.11.125 [runtime→runtime()]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-kms;1.11.125→com.amazonaws#jmespath-java;1.11.125 [runtime→compile]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.amazonaws#jmespath-java;1.11.125→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#jmespath-java;1.11.125→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-s3;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [runtime→runtime()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-s3;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [runtime→compile]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-s3;1.11.125→com.amazonaws#jmespath-java;1.11.125 [runtime→runtime()]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-s3;1.11.125→com.amazonaws#jmespath-java;1.11.125 [runtime→compile]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-ec2;1.11.125 [runtime→runtime()]
loadData of com.amazonaws#aws-java-sdk-ec2;1.11.125 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-ec2;1.11.125 [runtime→compile]
loadData of com.amazonaws#aws-java-sdk-ec2;1.11.125 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-ec2;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [runtime→runtime()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-ec2;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [runtime→compile]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-ec2;1.11.125→com.amazonaws#jmespath-java;1.11.125 [runtime→runtime()]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-ec2;1.11.125→com.amazonaws#jmespath-java;1.11.125 [runtime→compile]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-cloudformation;1.11.125 [runtime→runtime()]
loadData of com.amazonaws#aws-java-sdk-cloudformation;1.11.125 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-cloudformation;1.11.125 [runtime→compile]
loadData of com.amazonaws#aws-java-sdk-cloudformation;1.11.125 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-cloudformation;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [runtime→runtime()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-cloudformation;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [runtime→compile]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-cloudformation;1.11.125→com.amazonaws#jmespath-java;1.11.125 [runtime→runtime()]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-cloudformation;1.11.125→com.amazonaws#jmespath-java;1.11.125 [runtime→compile]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-aws-autoconfigure/ivy-1.2.3.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-aws-autoconfigure/ivy-1.2.3.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE
found org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [compile→master()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [compile→master()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-netflix-eureka-client/ivy-1.4.5.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-netflix-eureka-client/ivy-1.4.5.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE
found org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE in localm2
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-netflix-eureka-client/ivy-1.4.5.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-netflix-eureka-client/ivy-1.4.5.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE
found org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.eureka#eureka-client;1.7.2 [compile→master()]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
using downloadGrapes to resolve com.netflix.eureka#eureka-client;1.7.2
downloadGrapes: Checking cache for: dependency: com.netflix.eureka#eureka-client;1.7.2 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.eureka/eureka-client/ivy-1.7.2.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.eureka#eureka-client;1.7.2 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.eureka/eureka-client/ivy-1.7.2.xml
downloadGrapes: module revision found in cache: com.netflix.eureka#eureka-client;1.7.2
found com.netflix.eureka#eureka-client;1.7.2 in localm2
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.eureka#eureka-client;1.7.2 [compile→compile()]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.eureka#eureka-client;1.7.2 [compile→runtime()]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.eureka#eureka-client;1.7.2 [compile→compile]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→org.codehaus.jettison#jettison;1.3.7 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of org.codehaus.jettison#jettison;1.3.7 of rootConf=default
using downloadGrapes to resolve org.codehaus.jettison#jettison;1.3.7
downloadGrapes: Checking cache for: dependency: org.codehaus.jettison#jettison;1.3.7 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.codehaus.jettison/jettison/ivy-1.3.7.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.codehaus.jettison#jettison;1.3.7 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.codehaus.jettison/jettison/ivy-1.3.7.xml
downloadGrapes: module revision found in cache: org.codehaus.jettison#jettison;1.3.7
found org.codehaus.jettison#jettison;1.3.7 in localm2
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→org.codehaus.jettison#jettison;1.3.7 [runtime→runtime()]
loadData of org.codehaus.jettison#jettison;1.3.7 of rootConf=default
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→org.codehaus.jettison#jettison;1.3.7 [runtime→compile]
loadData of org.codehaus.jettison#jettison;1.3.7 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.codehaus.jettison#jettison;1.3.7→stax#stax-api;1.0.1 [compile→master()]
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of stax#stax-api;1.0.1 of rootConf=default
using downloadGrapes to resolve stax#stax-api;1.0.1
downloadGrapes: Checking cache for: dependency: stax#stax-api;1.0.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/stax/stax-api/ivy-1.0.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for stax#stax-api;1.0.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/stax/stax-api/ivy-1.0.1.xml
downloadGrapes: module revision found in cache: stax#stax-api;1.0.1
found stax#stax-api;1.0.1 in localm2
== resolving dependencies org.codehaus.jettison#jettison;1.3.7→stax#stax-api;1.0.1 [compile→compile()]
loadData of stax#stax-api;1.0.1 of rootConf=default
== resolving dependencies org.codehaus.jettison#jettison;1.3.7→stax#stax-api;1.0.1 [compile→runtime()]
loadData of stax#stax-api;1.0.1 of rootConf=default
== resolving dependencies org.codehaus.jettison#jettison;1.3.7→stax#stax-api;1.0.1 [compile→compile]
loadData of stax#stax-api;1.0.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.codehaus.jettison#jettison;1.3.7→stax#stax-api;1.0.1 [runtime→runtime()]
loadData of stax#stax-api;1.0.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.codehaus.jettison#jettison;1.3.7→stax#stax-api;1.0.1 [runtime→compile]
loadData of stax#stax-api;1.0.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→org.codehaus.jettison#jettison;1.3.7 [runtime→compile()]
loadData of org.codehaus.jettison#jettison;1.3.7 of rootConf=default
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.netflix.netflix-commons#netflix-eventbus;0.3.0 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.netflix.netflix-commons#netflix-eventbus;0.3.0 of rootConf=default
using downloadGrapes to resolve com.netflix.netflix-commons#netflix-eventbus;0.3.0
downloadGrapes: Checking cache for: dependency: com.netflix.netflix-commons#netflix-eventbus;0.3.0 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.netflix-commons/netflix-eventbus/ivy-0.3.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.netflix-commons#netflix-eventbus;0.3.0 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.netflix-commons/netflix-eventbus/ivy-0.3.0.xml
downloadGrapes: module revision found in cache: com.netflix.netflix-commons#netflix-eventbus;0.3.0
found com.netflix.netflix-commons#netflix-eventbus;0.3.0 in localm2
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.netflix.netflix-commons#netflix-eventbus;0.3.0 [runtime→runtime()]
loadData of com.netflix.netflix-commons#netflix-eventbus;0.3.0 of rootConf=default
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.netflix.netflix-commons#netflix-eventbus;0.3.0 [runtime→compile]
loadData of com.netflix.netflix-commons#netflix-eventbus;0.3.0 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→org.slf4j#slf4j-api;1.7.25 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→org.slf4j#slf4j-api;1.7.25 [runtime→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→com.netflix.netflix-commons#netflix-infix;0.3.0 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.netflix.netflix-commons#netflix-infix;0.3.0 of rootConf=default
using downloadGrapes to resolve com.netflix.netflix-commons#netflix-infix;0.3.0
downloadGrapes: Checking cache for: dependency: com.netflix.netflix-commons#netflix-infix;0.3.0 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.netflix-commons/netflix-infix/ivy-0.3.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.netflix-commons#netflix-infix;0.3.0 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.netflix-commons/netflix-infix/ivy-0.3.0.xml
downloadGrapes: module revision found in cache: com.netflix.netflix-commons#netflix-infix;0.3.0
found com.netflix.netflix-commons#netflix-infix;0.3.0 in localm2
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→com.netflix.netflix-commons#netflix-infix;0.3.0 [runtime→runtime()]
loadData of com.netflix.netflix-commons#netflix-infix;0.3.0 of rootConf=default
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→com.netflix.netflix-commons#netflix-infix;0.3.0 [runtime→compile]
loadData of com.netflix.netflix-commons#netflix-infix;0.3.0 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.google.code.findbugs#jsr305;3.0.1 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→org.slf4j#slf4j-api;1.7.25 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.google.code.findbugs#jsr305;3.0.1 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→org.slf4j#slf4j-api;1.7.25 [runtime→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→commons-jxpath#commons-jxpath;1.3 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.google.code.findbugs#jsr305;3.0.1 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of commons-jxpath#commons-jxpath;1.3 of rootConf=default
using downloadGrapes to resolve commons-jxpath#commons-jxpath;1.3
downloadGrapes: Checking cache for: dependency: commons-jxpath#commons-jxpath;1.3 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/commons-jxpath/commons-jxpath/ivy-1.3.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for commons-jxpath#commons-jxpath;1.3 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/commons-jxpath/commons-jxpath/ivy-1.3.xml
downloadGrapes: module revision found in cache: commons-jxpath#commons-jxpath;1.3
found commons-jxpath#commons-jxpath;1.3 in localm2
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: xml-apis#xml-apis;1.3.04 {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: xml-apis#xml-apis;1.4.01 {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-beanutils#commons-beanutils;1.7.0 {optional=[compile(), master()]} ⇒ dependency: commons-beanutils#commons-beanutils;1.9.3 {optional=[compile(), master()]}
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→commons-jxpath#commons-jxpath;1.3 [runtime→runtime()]
loadData of commons-jxpath#commons-jxpath;1.3 of rootConf=default
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→commons-jxpath#commons-jxpath;1.3 [runtime→compile]
loadData of commons-jxpath#commons-jxpath;1.3 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: xml-apis#xml-apis;1.3.04 {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: xml-apis#xml-apis;1.4.01 {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-beanutils#commons-beanutils;1.7.0 {optional=[compile(), master()]} ⇒ dependency: commons-beanutils#commons-beanutils;1.9.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: xml-apis#xml-apis;1.3.04 {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: xml-apis#xml-apis;1.4.01 {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-beanutils#commons-beanutils;1.7.0 {optional=[compile(), master()]} ⇒ dependency: commons-beanutils#commons-beanutils;1.9.3 {optional=[compile(), master()]}
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→commons-jxpath#commons-jxpath;1.3 [runtime→compile()]
loadData of commons-jxpath#commons-jxpath;1.3 of rootConf=default
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→joda-time#joda-time;2.9.9 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.google.code.findbugs#jsr305;3.0.1 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of joda-time#joda-time;2.9.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→joda-time#joda-time;2.9.9 [runtime→runtime()]
loadData of joda-time#joda-time;2.9.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→joda-time#joda-time;2.9.9 [runtime→compile]
loadData of joda-time#joda-time;2.9.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→joda-time#joda-time;2.9.9 [runtime→compile()]
loadData of joda-time#joda-time;2.9.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→org.antlr#antlr-runtime;3.4 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.google.code.findbugs#jsr305;3.0.1 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of org.antlr#antlr-runtime;3.4 of rootConf=default
using downloadGrapes to resolve org.antlr#antlr-runtime;3.4
downloadGrapes: Checking cache for: dependency: org.antlr#antlr-runtime;3.4 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.antlr/antlr-runtime/ivy-3.4.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.antlr#antlr-runtime;3.4 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.antlr/antlr-runtime/ivy-3.4.xml
downloadGrapes: module revision found in cache: org.antlr#antlr-runtime;3.4
found org.antlr#antlr-runtime;3.4 in localm2
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→org.antlr#antlr-runtime;3.4 [runtime→runtime()]
loadData of org.antlr#antlr-runtime;3.4 of rootConf=default
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→org.antlr#antlr-runtime;3.4 [runtime→compile]
loadData of org.antlr#antlr-runtime;3.4 of rootConf=default
== resolving dependencies org.antlr#antlr-runtime;3.4→org.antlr#stringtemplate;3.2.1 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.google.code.findbugs#jsr305;3.0.1 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of org.antlr#stringtemplate;3.2.1 of rootConf=default
using downloadGrapes to resolve org.antlr#stringtemplate;3.2.1
downloadGrapes: Checking cache for: dependency: org.antlr#stringtemplate;3.2.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.antlr/stringtemplate/ivy-3.2.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.antlr#stringtemplate;3.2.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.antlr/stringtemplate/ivy-3.2.1.xml
downloadGrapes: module revision found in cache: org.antlr#stringtemplate;3.2.1
found org.antlr#stringtemplate;3.2.1 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.5 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.antlr#antlr-runtime;3.4→org.antlr#stringtemplate;3.2.1 [compile→compile()]
loadData of org.antlr#stringtemplate;3.2.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.5 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.antlr#stringtemplate;3.2.1→antlr#antlr;2.7.7 [compile→master()]
dependency descriptor has been mediated: dependency: junit#junit;4.5 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.5 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.5 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.5 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.5 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.google.code.findbugs#jsr305;3.0.1 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of antlr#antlr;2.7.7 of rootConf=default
using downloadGrapes to resolve antlr#antlr;2.7.7
downloadGrapes: Checking cache for: dependency: antlr#antlr;2.7.7 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/antlr/antlr/ivy-2.7.7.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for antlr#antlr;2.7.7 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/antlr/antlr/ivy-2.7.7.xml
downloadGrapes: module revision found in cache: antlr#antlr;2.7.7
found antlr#antlr;2.7.7 in localm2
== resolving dependencies org.antlr#stringtemplate;3.2.1→antlr#antlr;2.7.7 [compile→compile()]
loadData of antlr#antlr;2.7.7 of rootConf=default
== resolving dependencies org.antlr#stringtemplate;3.2.1→antlr#antlr;2.7.7 [compile→runtime()]
loadData of antlr#antlr;2.7.7 of rootConf=default
== resolving dependencies org.antlr#stringtemplate;3.2.1→antlr#antlr;2.7.7 [compile→compile]
loadData of antlr#antlr;2.7.7 of rootConf=default
== resolving dependencies org.antlr#antlr-runtime;3.4→org.antlr#stringtemplate;3.2.1 [compile→runtime()]
loadData of org.antlr#stringtemplate;3.2.1 of rootConf=default
== resolving dependencies org.antlr#antlr-runtime;3.4→org.antlr#stringtemplate;3.2.1 [compile→compile]
loadData of org.antlr#stringtemplate;3.2.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.5 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.antlr#stringtemplate;3.2.1→antlr#antlr;2.7.7 [runtime→runtime()]
loadData of antlr#antlr;2.7.7 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.antlr#stringtemplate;3.2.1→antlr#antlr;2.7.7 [runtime→compile]
loadData of antlr#antlr;2.7.7 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.antlr#antlr-runtime;3.4→antlr#antlr;2.7.7 [compile→master()]
loadData of antlr#antlr;2.7.7 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.antlr#antlr-runtime;3.4→antlr#antlr;2.7.7 [compile→compile()]
loadData of antlr#antlr;2.7.7 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.antlr#antlr-runtime;3.4→org.antlr#stringtemplate;3.2.1 [runtime→runtime()]
loadData of org.antlr#stringtemplate;3.2.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.antlr#antlr-runtime;3.4→org.antlr#stringtemplate;3.2.1 [runtime→compile]
loadData of org.antlr#stringtemplate;3.2.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.antlr#antlr-runtime;3.4→antlr#antlr;2.7.7 [runtime→runtime()]
loadData of antlr#antlr;2.7.7 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.antlr#antlr-runtime;3.4→antlr#antlr;2.7.7 [runtime→compile]
loadData of antlr#antlr;2.7.7 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→org.antlr#antlr-runtime;3.4 [runtime→compile()]
loadData of org.antlr#antlr-runtime;3.4 of rootConf=default
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→com.google.guava#guava;18.0 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.google.code.findbugs#jsr305;3.0.1 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→com.google.guava#guava;18.0 [runtime→runtime()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→com.google.guava#guava;18.0 [runtime→compile]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→com.google.guava#guava;18.0 [runtime→compile()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→com.google.code.gson#gson;2.8.5 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.google.code.findbugs#jsr305;3.0.1 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.google.code.gson#gson;2.8.5 of rootConf=default
using downloadGrapes to resolve com.google.code.gson#gson;2.8.5
downloadGrapes: Checking cache for: dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.google.code.gson/gson/ivy-2.8.5.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.google.code.gson#gson;2.8.5 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.google.code.gson/gson/ivy-2.8.5.xml
downloadGrapes: module revision found in cache: com.google.code.gson#gson;2.8.5
found com.google.code.gson#gson;2.8.5 in localm2
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→com.google.code.gson#gson;2.8.5 [runtime→runtime()]
loadData of com.google.code.gson#gson;2.8.5 of rootConf=default
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→com.google.code.gson#gson;2.8.5 [runtime→compile]
loadData of com.google.code.gson#gson;2.8.5 of rootConf=default
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→com.google.code.gson#gson;2.8.5 [runtime→compile()]
loadData of com.google.code.gson#gson;2.8.5 of rootConf=default
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→com.netflix.netflix-commons#netflix-infix;0.3.0 [runtime→compile()]
loadData of com.netflix.netflix-commons#netflix-infix;0.3.0 of rootConf=default
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→com.netflix.servo#servo-core;0.10.1 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→com.netflix.servo#servo-core;0.10.1 [runtime→runtime()]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→com.netflix.servo#servo-core;0.10.1 [runtime→compile]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→com.netflix.servo#servo-core;0.10.1 [runtime→compile()]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→com.netflix.archaius#archaius-core;0.7.4 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→com.netflix.archaius#archaius-core;0.7.4 [runtime→runtime()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→org.apache.commons#commons-math;2.2 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of org.apache.commons#commons-math;2.2 of rootConf=default
using downloadGrapes to resolve org.apache.commons#commons-math;2.2
downloadGrapes: Checking cache for: dependency: org.apache.commons#commons-math;2.2 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.commons/commons-math/ivy-2.2.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.apache.commons#commons-math;2.2 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.commons/commons-math/ivy-2.2.xml
downloadGrapes: module revision found in cache: org.apache.commons#commons-math;2.2
found org.apache.commons#commons-math;2.2 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.4 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→org.apache.commons#commons-math;2.2 [runtime→runtime()]
loadData of org.apache.commons#commons-math;2.2 of rootConf=default
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→org.apache.commons#commons-math;2.2 [runtime→compile]
loadData of org.apache.commons#commons-math;2.2 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.4 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.4 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→org.apache.commons#commons-math;2.2 [runtime→compile()]
loadData of org.apache.commons#commons-math;2.2 of rootConf=default
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.netflix.netflix-commons#netflix-eventbus;0.3.0 [runtime→compile()]
loadData of com.netflix.netflix-commons#netflix-eventbus;0.3.0 of rootConf=default
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.thoughtworks.xstream#xstream;1.4.10 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
using downloadGrapes to resolve com.thoughtworks.xstream#xstream;1.4.10
downloadGrapes: Checking cache for: dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.thoughtworks.xstream/xstream/ivy-1.4.10.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.thoughtworks.xstream#xstream;1.4.10 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.thoughtworks.xstream/xstream/ivy-1.4.10.xml
downloadGrapes: module revision found in cache: com.thoughtworks.xstream#xstream;1.4.10
found com.thoughtworks.xstream#xstream;1.4.10 in localm2
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.thoughtworks.xstream#xstream;1.4.10 [runtime→runtime()]
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.thoughtworks.xstream#xstream;1.4.10 [runtime→compile]
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
== resolving dependencies com.thoughtworks.xstream#xstream;1.4.10→xmlpull#xmlpull;1.1.3.1 [compile→master()]
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of xmlpull#xmlpull;1.1.3.1 of rootConf=default
using downloadGrapes to resolve xmlpull#xmlpull;1.1.3.1
downloadGrapes: Checking cache for: dependency: xmlpull#xmlpull;1.1.3.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/xmlpull/xmlpull/ivy-1.1.3.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for xmlpull#xmlpull;1.1.3.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/xmlpull/xmlpull/ivy-1.1.3.1.xml
downloadGrapes: module revision found in cache: xmlpull#xmlpull;1.1.3.1
found xmlpull#xmlpull;1.1.3.1 in localm2
== resolving dependencies com.thoughtworks.xstream#xstream;1.4.10→xmlpull#xmlpull;1.1.3.1 [compile→compile()]
loadData of xmlpull#xmlpull;1.1.3.1 of rootConf=default
== resolving dependencies com.thoughtworks.xstream#xstream;1.4.10→xmlpull#xmlpull;1.1.3.1 [compile→runtime()]
loadData of xmlpull#xmlpull;1.1.3.1 of rootConf=default
== resolving dependencies com.thoughtworks.xstream#xstream;1.4.10→xmlpull#xmlpull;1.1.3.1 [compile→compile]
loadData of xmlpull#xmlpull;1.1.3.1 of rootConf=default
== resolving dependencies com.thoughtworks.xstream#xstream;1.4.10→xpp3#xpp3_min;1.1.4c [compile→master()]
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of xpp3#xpp3_min;1.1.4c of rootConf=default
using downloadGrapes to resolve xpp3#xpp3_min;1.1.4c
downloadGrapes: Checking cache for: dependency: xpp3#xpp3_min;1.1.4c {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/xpp3/xpp3_min/ivy-1.1.4c.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for xpp3#xpp3_min;1.1.4c (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/xpp3/xpp3_min/ivy-1.1.4c.xml
downloadGrapes: module revision found in cache: xpp3#xpp3_min;1.1.4c
found xpp3#xpp3_min;1.1.4c in localm2
== resolving dependencies com.thoughtworks.xstream#xstream;1.4.10→xpp3#xpp3_min;1.1.4c [compile→compile()]
loadData of xpp3#xpp3_min;1.1.4c of rootConf=default
== resolving dependencies com.thoughtworks.xstream#xstream;1.4.10→xpp3#xpp3_min;1.1.4c [compile→runtime()]
loadData of xpp3#xpp3_min;1.1.4c of rootConf=default
== resolving dependencies com.thoughtworks.xstream#xstream;1.4.10→xpp3#xpp3_min;1.1.4c [compile→compile]
loadData of xpp3#xpp3_min;1.1.4c of rootConf=default
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
== resolving dependencies com.thoughtworks.xstream#xstream;1.4.10→xmlpull#xmlpull;1.1.3.1 [runtime→runtime()]
loadData of xmlpull#xmlpull;1.1.3.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.thoughtworks.xstream#xstream;1.4.10→xmlpull#xmlpull;1.1.3.1 [runtime→compile]
loadData of xmlpull#xmlpull;1.1.3.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.thoughtworks.xstream#xstream;1.4.10→xpp3#xpp3_min;1.1.4c [runtime→runtime()]
loadData of xpp3#xpp3_min;1.1.4c of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.thoughtworks.xstream#xstream;1.4.10→xpp3#xpp3_min;1.1.4c [runtime→compile]
loadData of xpp3#xpp3_min;1.1.4c of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.thoughtworks.xstream#xstream;1.4.10 [runtime→compile()]
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.netflix.archaius#archaius-core;0.7.4 [runtime→master()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.netflix.archaius#archaius-core;0.7.4 [runtime→runtime()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→javax.ws.rs#jsr311-api;1.1.1 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of javax.ws.rs#jsr311-api;1.1.1 of rootConf=default
using downloadGrapes to resolve javax.ws.rs#jsr311-api;1.1.1
downloadGrapes: Checking cache for: dependency: javax.ws.rs#jsr311-api;1.1.1 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/javax.ws.rs/jsr311-api/ivy-1.1.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for javax.ws.rs#jsr311-api;1.1.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/javax.ws.rs/jsr311-api/ivy-1.1.1.xml
downloadGrapes: module revision found in cache: javax.ws.rs#jsr311-api;1.1.1
found javax.ws.rs#jsr311-api;1.1.1 in localm2
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→javax.ws.rs#jsr311-api;1.1.1 [runtime→runtime()]
loadData of javax.ws.rs#jsr311-api;1.1.1 of rootConf=default
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→javax.ws.rs#jsr311-api;1.1.1 [runtime→compile]
loadData of javax.ws.rs#jsr311-api;1.1.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→javax.ws.rs#jsr311-api;1.1.1 [runtime→compile()]
loadData of javax.ws.rs#jsr311-api;1.1.1 of rootConf=default
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.netflix.servo#servo-core;0.10.1 [runtime→master()]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.netflix.servo#servo-core;0.10.1 [runtime→runtime()]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.netflix.servo#servo-core;0.10.1 [runtime→compile]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.netflix.servo#servo-core;0.10.1 [runtime→compile()]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.sun.jersey#jersey-core;1.19.1 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.sun.jersey#jersey-core;1.19.1 of rootConf=default
using downloadGrapes to resolve com.sun.jersey#jersey-core;1.19.1
downloadGrapes: Checking cache for: dependency: com.sun.jersey#jersey-core;1.19.1 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.sun.jersey/jersey-core/ivy-1.19.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.sun.jersey#jersey-core;1.19.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.sun.jersey/jersey-core/ivy-1.19.1.xml
downloadGrapes: module revision found in cache: com.sun.jersey#jersey-core;1.19.1
found com.sun.jersey#jersey-core;1.19.1 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.sun.jersey#jersey-core;1.19.1 [runtime→runtime()]
loadData of com.sun.jersey#jersey-core;1.19.1 of rootConf=default
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.sun.jersey#jersey-core;1.19.1 [runtime→compile]
loadData of com.sun.jersey#jersey-core;1.19.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.sun.jersey#jersey-core;1.19.1→javax.ws.rs#jsr311-api;1.1.1 [compile→master()]
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of javax.ws.rs#jsr311-api;1.1.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.sun.jersey#jersey-core;1.19.1→javax.ws.rs#jsr311-api;1.1.1 [compile→compile()]
loadData of javax.ws.rs#jsr311-api;1.1.1 of rootConf=default
default is loaded and no conf to load. Skip loading
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.sun.jersey#jersey-core;1.19.1→javax.ws.rs#jsr311-api;1.1.1 [runtime→runtime()]
loadData of javax.ws.rs#jsr311-api;1.1.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.sun.jersey#jersey-core;1.19.1→javax.ws.rs#jsr311-api;1.1.1 [runtime→compile]
loadData of javax.ws.rs#jsr311-api;1.1.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.sun.jersey#jersey-core;1.19.1 [runtime→compile()]
loadData of com.sun.jersey#jersey-core;1.19.1 of rootConf=default
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.sun.jersey#jersey-client;1.19.1 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.sun.jersey#jersey-client;1.19.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.sun.jersey#jersey-client;1.19.1 [runtime→runtime()]
loadData of com.sun.jersey#jersey-client;1.19.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.sun.jersey#jersey-client;1.19.1 [runtime→compile]
loadData of com.sun.jersey#jersey-client;1.19.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.sun.jersey#jersey-client;1.19.1 [runtime→compile()]
loadData of com.sun.jersey#jersey-client;1.19.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.sun.jersey.contribs#jersey-apache-client4;1.19.1 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.sun.jersey.contribs#jersey-apache-client4;1.19.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.sun.jersey.contribs#jersey-apache-client4;1.19.1 [runtime→runtime()]
loadData of com.sun.jersey.contribs#jersey-apache-client4;1.19.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.sun.jersey.contribs#jersey-apache-client4;1.19.1 [runtime→compile]
loadData of com.sun.jersey.contribs#jersey-apache-client4;1.19.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.sun.jersey.contribs#jersey-apache-client4;1.19.1 [runtime→compile()]
loadData of com.sun.jersey.contribs#jersey-apache-client4;1.19.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→org.apache.httpcomponents#httpclient;4.5.5 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→org.apache.httpcomponents#httpclient;4.5.5 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→org.apache.httpcomponents#httpclient;4.5.5 [runtime→compile]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→org.apache.httpcomponents#httpclient;4.5.5 [runtime→compile()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.google.inject#guice;4.1.0 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.google.inject#guice;4.1.0 of rootConf=default
using downloadGrapes to resolve com.google.inject#guice;4.1.0
downloadGrapes: Checking cache for: dependency: com.google.inject#guice;4.1.0 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.google.inject/guice/ivy-4.1.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.google.inject#guice;4.1.0 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.google.inject/guice/ivy-4.1.0.xml
downloadGrapes: module revision found in cache: com.google.inject#guice;4.1.0
found com.google.inject#guice;4.1.0 in localm2
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.google.inject#guice;4.1.0 [runtime→runtime()]
loadData of com.google.inject#guice;4.1.0 of rootConf=default
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.google.inject#guice;4.1.0 [runtime→compile]
loadData of com.google.inject#guice;4.1.0 of rootConf=default
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.google.inject#guice;4.1.0→javax.inject#javax.inject;1 [compile→master()]
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.google.inject#guice;4.1.0→javax.inject#javax.inject;1 [compile→compile()]
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.google.inject#guice;4.1.0→aopalliance#aopalliance;1.0 [compile→master()]
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of aopalliance#aopalliance;1.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.google.inject#guice;4.1.0→aopalliance#aopalliance;1.0 [compile→compile()]
loadData of aopalliance#aopalliance;1.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.google.inject#guice;4.1.0→com.google.guava#guava;18.0 [compile→master()]
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.google.inject#guice;4.1.0→com.google.guava#guava;18.0 [compile→compile()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.google.inject#guice;4.1.0→javax.inject#javax.inject;1 [runtime→runtime()]
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.google.inject#guice;4.1.0→javax.inject#javax.inject;1 [runtime→compile]
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.google.inject#guice;4.1.0→aopalliance#aopalliance;1.0 [runtime→runtime()]
loadData of aopalliance#aopalliance;1.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.google.inject#guice;4.1.0→aopalliance#aopalliance;1.0 [runtime→compile]
loadData of aopalliance#aopalliance;1.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.google.inject#guice;4.1.0→com.google.guava#guava;18.0 [runtime→runtime()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.google.inject#guice;4.1.0→com.google.guava#guava;18.0 [runtime→compile]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.google.inject#guice;4.1.0 [runtime→compile()]
loadData of com.google.inject#guice;4.1.0 of rootConf=default
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→compile()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→compile()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.eureka#eureka-core;1.7.2 [compile→master()]
loadData of com.netflix.eureka#eureka-core;1.7.2 of rootConf=default
using downloadGrapes to resolve com.netflix.eureka#eureka-core;1.7.2
downloadGrapes: Checking cache for: dependency: com.netflix.eureka#eureka-core;1.7.2 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.eureka/eureka-core/ivy-1.7.2.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.eureka#eureka-core;1.7.2 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.eureka/eureka-core/ivy-1.7.2.xml
downloadGrapes: module revision found in cache: com.netflix.eureka#eureka-core;1.7.2
found com.netflix.eureka#eureka-core;1.7.2 in localm2
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.eureka#eureka-core;1.7.2 [compile→compile()]
loadData of com.netflix.eureka#eureka-core;1.7.2 of rootConf=default
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.eureka#eureka-core;1.7.2 [compile→runtime()]
loadData of com.netflix.eureka#eureka-core;1.7.2 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.eureka#eureka-core;1.7.2 [compile→compile]
loadData of com.netflix.eureka#eureka-core;1.7.2 of rootConf=default
excluding dependency: com.amazonaws#aws-java-sdk-core;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-ec2;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-autoscaling;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-sts;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-route53;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]} in runtime
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→com.netflix.eureka#eureka-client;1.7.2 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.amazonaws#aws-java-sdk-core;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-ec2;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-autoscaling;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-sts;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-route53;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→com.netflix.eureka#eureka-client;1.7.2 [runtime→runtime()]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→com.netflix.eureka#eureka-client;1.7.2 [runtime→compile]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→com.netflix.eureka#eureka-client;1.7.2 [runtime→compile()]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→com.thoughtworks.xstream#xstream;1.4.10 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.amazonaws#aws-java-sdk-core;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-ec2;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-autoscaling;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-sts;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-route53;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→com.thoughtworks.xstream#xstream;1.4.10 [runtime→runtime()]
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→com.thoughtworks.xstream#xstream;1.4.10 [runtime→compile]
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→com.thoughtworks.xstream#xstream;1.4.10 [runtime→compile()]
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→javax.ws.rs#jsr311-api;1.1.1 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.amazonaws#aws-java-sdk-core;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-ec2;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-autoscaling;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-sts;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-route53;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
loadData of javax.ws.rs#jsr311-api;1.1.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→javax.ws.rs#jsr311-api;1.1.1 [runtime→runtime()]
loadData of javax.ws.rs#jsr311-api;1.1.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→javax.ws.rs#jsr311-api;1.1.1 [runtime→compile]
loadData of javax.ws.rs#jsr311-api;1.1.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→javax.ws.rs#jsr311-api;1.1.1 [runtime→compile()]
loadData of javax.ws.rs#jsr311-api;1.1.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→org.codehaus.woodstox#woodstox-core-asl;4.4.1 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.amazonaws#aws-java-sdk-core;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-ec2;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-autoscaling;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-sts;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-route53;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
loadData of org.codehaus.woodstox#woodstox-core-asl;4.4.1 of rootConf=default
using downloadGrapes to resolve org.codehaus.woodstox#woodstox-core-asl;4.4.1
downloadGrapes: Checking cache for: dependency: org.codehaus.woodstox#woodstox-core-asl;4.4.1 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.codehaus.woodstox/woodstox-core-asl/ivy-4.4.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.codehaus.woodstox#woodstox-core-asl;4.4.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.codehaus.woodstox/woodstox-core-asl/ivy-4.4.1.xml
downloadGrapes: module revision found in cache: org.codehaus.woodstox#woodstox-core-asl;4.4.1
found org.codehaus.woodstox#woodstox-core-asl;4.4.1 in localm2
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→org.codehaus.woodstox#woodstox-core-asl;4.4.1 [runtime→runtime()]
loadData of org.codehaus.woodstox#woodstox-core-asl;4.4.1 of rootConf=default
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→org.codehaus.woodstox#woodstox-core-asl;4.4.1 [runtime→compile]
loadData of org.codehaus.woodstox#woodstox-core-asl;4.4.1 of rootConf=default
== resolving dependencies org.codehaus.woodstox#woodstox-core-asl;4.4.1→javax.xml.stream#stax-api;1.0-2 [compile→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.amazonaws#aws-java-sdk-core;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-ec2;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-autoscaling;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-sts;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-route53;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
loadData of javax.xml.stream#stax-api;1.0-2 of rootConf=default
using downloadGrapes to resolve javax.xml.stream#stax-api;1.0-2
downloadGrapes: Checking cache for: dependency: javax.xml.stream#stax-api;1.0-2 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/javax.xml.stream/stax-api/ivy-1.0-2.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for javax.xml.stream#stax-api;1.0-2 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/javax.xml.stream/stax-api/ivy-1.0-2.xml
downloadGrapes: module revision found in cache: javax.xml.stream#stax-api;1.0-2
found javax.xml.stream#stax-api;1.0-2 in localm2
== resolving dependencies org.codehaus.woodstox#woodstox-core-asl;4.4.1→javax.xml.stream#stax-api;1.0-2 [compile→compile()]
loadData of javax.xml.stream#stax-api;1.0-2 of rootConf=default
== resolving dependencies org.codehaus.woodstox#woodstox-core-asl;4.4.1→javax.xml.stream#stax-api;1.0-2 [compile→runtime()]
loadData of javax.xml.stream#stax-api;1.0-2 of rootConf=default
== resolving dependencies org.codehaus.woodstox#woodstox-core-asl;4.4.1→javax.xml.stream#stax-api;1.0-2 [compile→compile]
loadData of javax.xml.stream#stax-api;1.0-2 of rootConf=default
== resolving dependencies org.codehaus.woodstox#woodstox-core-asl;4.4.1→org.codehaus.woodstox#stax2-api;3.1.4 [compile→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.amazonaws#aws-java-sdk-core;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-ec2;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-autoscaling;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-sts;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-route53;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
loadData of org.codehaus.woodstox#stax2-api;3.1.4 of rootConf=default
using downloadGrapes to resolve org.codehaus.woodstox#stax2-api;3.1.4
downloadGrapes: Checking cache for: dependency: org.codehaus.woodstox#stax2-api;3.1.4 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.codehaus.woodstox/stax2-api/ivy-3.1.4.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.codehaus.woodstox#stax2-api;3.1.4 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.codehaus.woodstox/stax2-api/ivy-3.1.4.xml
downloadGrapes: module revision found in cache: org.codehaus.woodstox#stax2-api;3.1.4
found org.codehaus.woodstox#stax2-api;3.1.4 in localm2
== resolving dependencies org.codehaus.woodstox#woodstox-core-asl;4.4.1→org.codehaus.woodstox#stax2-api;3.1.4 [compile→compile()]
loadData of org.codehaus.woodstox#stax2-api;3.1.4 of rootConf=default
== resolving dependencies org.codehaus.woodstox#woodstox-core-asl;4.4.1→org.codehaus.woodstox#stax2-api;3.1.4 [compile→runtime()]
loadData of org.codehaus.woodstox#stax2-api;3.1.4 of rootConf=default
== resolving dependencies org.codehaus.woodstox#woodstox-core-asl;4.4.1→org.codehaus.woodstox#stax2-api;3.1.4 [compile→compile]
loadData of org.codehaus.woodstox#stax2-api;3.1.4 of rootConf=default
== resolving dependencies org.codehaus.woodstox#woodstox-core-asl;4.4.1→javax.xml.stream#stax-api;1.0-2 [runtime→runtime()]
loadData of javax.xml.stream#stax-api;1.0-2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.codehaus.woodstox#woodstox-core-asl;4.4.1→javax.xml.stream#stax-api;1.0-2 [runtime→compile]
loadData of javax.xml.stream#stax-api;1.0-2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.codehaus.woodstox#woodstox-core-asl;4.4.1→org.codehaus.woodstox#stax2-api;3.1.4 [runtime→runtime()]
loadData of org.codehaus.woodstox#stax2-api;3.1.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.codehaus.woodstox#woodstox-core-asl;4.4.1→org.codehaus.woodstox#stax2-api;3.1.4 [runtime→compile]
loadData of org.codehaus.woodstox#stax2-api;3.1.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→org.codehaus.woodstox#woodstox-core-asl;4.4.1 [runtime→compile()]
loadData of org.codehaus.woodstox#woodstox-core-asl;4.4.1 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.ribbon#ribbon-eureka;2.2.5 [compile→master()]
loadData of com.netflix.ribbon#ribbon-eureka;2.2.5 of rootConf=default
using downloadGrapes to resolve com.netflix.ribbon#ribbon-eureka;2.2.5
downloadGrapes: Checking cache for: dependency: com.netflix.ribbon#ribbon-eureka;2.2.5 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.ribbon/ribbon-eureka/ivy-2.2.5.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.ribbon#ribbon-eureka;2.2.5 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.ribbon/ribbon-eureka/ivy-2.2.5.xml
downloadGrapes: module revision found in cache: com.netflix.ribbon#ribbon-eureka;2.2.5
found com.netflix.ribbon#ribbon-eureka;2.2.5 in localm2
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.ribbon#ribbon-eureka;2.2.5 [compile→compile()]
loadData of com.netflix.ribbon#ribbon-eureka;2.2.5 of rootConf=default
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.ribbon#ribbon-eureka;2.2.5 [compile→runtime()]
loadData of com.netflix.ribbon#ribbon-eureka;2.2.5 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.ribbon#ribbon-eureka;2.2.5 [compile→compile]
loadData of com.netflix.ribbon#ribbon-eureka;2.2.5 of rootConf=default
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→master()]
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→compile()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→master()]
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→compile()]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.eureka#eureka-client;1.7.2 [runtime→master()]
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.eureka#eureka-client;1.7.2 [runtime→runtime()]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.eureka#eureka-client;1.7.2 [runtime→compile]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.eureka#eureka-client;1.7.2 [runtime→compile()]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→master()]
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→master()]
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→runtime()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.thoughtworks.xstream#xstream;1.4.10 [compile→master()]
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.thoughtworks.xstream#xstream;1.4.10 [compile→compile()]
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.eureka#eureka-client;1.7.2 [runtime→runtime()]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.eureka#eureka-client;1.7.2 [runtime→compile]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.eureka#eureka-core;1.7.2 [runtime→runtime()]
loadData of com.netflix.eureka#eureka-core;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.eureka#eureka-core;1.7.2 [runtime→compile]
loadData of com.netflix.eureka#eureka-core;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.ribbon#ribbon-eureka;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-eureka;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.ribbon#ribbon-eureka;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-eureka;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.thoughtworks.xstream#xstream;1.4.10 [runtime→runtime()]
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.thoughtworks.xstream#xstream;1.4.10 [runtime→compile]
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-netflix-eureka-server/ivy-1.4.5.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-netflix-eureka-server/ivy-1.4.5.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE
found org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE in localm2
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-netflix-eureka-server/ivy-1.4.5.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-netflix-eureka-server/ivy-1.4.5.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE
found org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-freemarker/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-freemarker/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE
found org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.freemarker#freemarker;2.3.28 [compile→master()]
loadData of org.freemarker#freemarker;2.3.28 of rootConf=default
using downloadGrapes to resolve org.freemarker#freemarker;2.3.28
downloadGrapes: Checking cache for: dependency: org.freemarker#freemarker;2.3.28 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.freemarker/freemarker/ivy-2.3.28.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.freemarker#freemarker;2.3.28 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.freemarker/freemarker/ivy-2.3.28.xml
downloadGrapes: module revision found in cache: org.freemarker#freemarker;2.3.28
found org.freemarker#freemarker;2.3.28 in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.freemarker#freemarker;2.3.28 [compile→compile()]
loadData of org.freemarker#freemarker;2.3.28 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.springframework#spring-context-support;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-context-support;4.3.18.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework#spring-context-support;4.3.18.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework#spring-context-support;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-context-support/ivy-4.3.18.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework#spring-context-support;4.3.18.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-context-support/ivy-4.3.18.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework#spring-context-support;4.3.18.RELEASE
found org.springframework#spring-context-support;4.3.18.RELEASE in localm2
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.springframework#spring-context-support;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context-support;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
== resolving dependencies org.springframework#spring-context-support;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context-support;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context-support;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context-support;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context-support;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context-support;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.netflix.eureka#eureka-client;1.7.2 [compile→master()]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.netflix.eureka#eureka-client;1.7.2 [compile→compile()]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.sun.jersey#jersey-servlet;1.19.1 [compile→master()]
loadData of com.sun.jersey#jersey-servlet;1.19.1 of rootConf=default
using downloadGrapes to resolve com.sun.jersey#jersey-servlet;1.19.1
downloadGrapes: Checking cache for: dependency: com.sun.jersey#jersey-servlet;1.19.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.sun.jersey/jersey-servlet/ivy-1.19.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.sun.jersey#jersey-servlet;1.19.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.sun.jersey/jersey-servlet/ivy-1.19.1.xml
downloadGrapes: module revision found in cache: com.sun.jersey#jersey-servlet;1.19.1
found com.sun.jersey#jersey-servlet;1.19.1 in localm2
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.sun.jersey#jersey-servlet;1.19.1 [compile→compile()]
loadData of com.sun.jersey#jersey-servlet;1.19.1 of rootConf=default
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.sun.jersey#jersey-server;1.19.1 [compile→master()]
loadData of com.sun.jersey#jersey-server;1.19.1 of rootConf=default
using downloadGrapes to resolve com.sun.jersey#jersey-server;1.19.1
downloadGrapes: Checking cache for: dependency: com.sun.jersey#jersey-server;1.19.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.sun.jersey/jersey-server/ivy-1.19.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.sun.jersey#jersey-server;1.19.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.sun.jersey/jersey-server/ivy-1.19.1.xml
downloadGrapes: module revision found in cache: com.sun.jersey#jersey-server;1.19.1
found com.sun.jersey#jersey-server;1.19.1 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.sun.jersey#jersey-server;1.19.1 [compile→compile()]
loadData of com.sun.jersey#jersey-server;1.19.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.netflix.eureka#eureka-core;1.7.2 [compile→master()]
loadData of com.netflix.eureka#eureka-core;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.netflix.eureka#eureka-core;1.7.2 [compile→compile()]
loadData of com.netflix.eureka#eureka-core;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.netflix.archaius#archaius-core;0.7.4 [compile→master()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.netflix.archaius#archaius-core;0.7.4 [compile→compile()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→javax.inject#javax.inject;1 [compile→master()]
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→javax.inject#javax.inject;1 [compile→compile()]
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 [compile→master()]
loadData of com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 of rootConf=default
using downloadGrapes to resolve com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11
downloadGrapes: Checking cache for: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.dataformat/jackson-dataformat-xml/ivy-2.8.11.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.dataformat/jackson-dataformat-xml/ivy-2.8.11.xml
downloadGrapes: module revision found in cache: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11
found com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 in localm2
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 [compile→compile()]
loadData of com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.core#jackson-core;2.8.11 [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.core#jackson-core;2.8.11 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11 [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11 of rootConf=default
using downloadGrapes to resolve com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11
downloadGrapes: Checking cache for: dependency: com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.module/jackson-module-jaxb-annotations/ivy-2.8.11.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.module/jackson-module-jaxb-annotations/ivy-2.8.11.xml
downloadGrapes: module revision found in cache: com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11
found com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11 in localm2
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11 [compile→compile()]
loadData of com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11 of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11→com.fasterxml.jackson.core#jackson-core;2.8.11 [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11→com.fasterxml.jackson.core#jackson-core;2.8.11 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→org.codehaus.woodstox#stax2-api;3.1.4 [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.codehaus.woodstox#stax2-api;3.1.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→org.codehaus.woodstox#stax2-api;3.1.4 [compile→compile()]
loadData of org.codehaus.woodstox#stax2-api;3.1.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.woodstox#woodstox-core;5.0.3 [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.woodstox#woodstox-core;5.0.3 of rootConf=default
using downloadGrapes to resolve com.fasterxml.woodstox#woodstox-core;5.0.3
downloadGrapes: Checking cache for: dependency: com.fasterxml.woodstox#woodstox-core;5.0.3 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.woodstox/woodstox-core/ivy-5.0.3.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.fasterxml.woodstox#woodstox-core;5.0.3 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.woodstox/woodstox-core/ivy-5.0.3.xml
downloadGrapes: module revision found in cache: com.fasterxml.woodstox#woodstox-core;5.0.3
found com.fasterxml.woodstox#woodstox-core;5.0.3 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.woodstox#woodstox-core;5.0.3 [compile→compile()]
loadData of com.fasterxml.woodstox#woodstox-core;5.0.3 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.fasterxml.woodstox#woodstox-core;5.0.3→org.codehaus.woodstox#stax2-api;3.1.4 [compile→master()]
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of org.codehaus.woodstox#stax2-api;3.1.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.woodstox#woodstox-core;5.0.3→org.codehaus.woodstox#stax2-api;3.1.4 [compile→compile()]
loadData of org.codehaus.woodstox#stax2-api;3.1.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.thoughtworks.xstream#xstream;1.4.10 [compile→master()]
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.thoughtworks.xstream#xstream;1.4.10 [compile→compile()]
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.freemarker#freemarker;2.3.28 [runtime→runtime()]
loadData of org.freemarker#freemarker;2.3.28 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.freemarker#freemarker;2.3.28 [runtime→compile]
loadData of org.freemarker#freemarker;2.3.28 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.springframework#spring-context-support;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context-support;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.springframework#spring-context-support;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context-support;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
== resolving dependencies org.springframework#spring-context-support;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context-support;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context-support;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context-support;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context-support;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context-support;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.netflix.eureka#eureka-client;1.7.2 [runtime→runtime()]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.netflix.eureka#eureka-client;1.7.2 [runtime→compile]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.sun.jersey#jersey-servlet;1.19.1 [runtime→runtime()]
loadData of com.sun.jersey#jersey-servlet;1.19.1 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.sun.jersey#jersey-servlet;1.19.1 [runtime→compile]
loadData of com.sun.jersey#jersey-servlet;1.19.1 of rootConf=default
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.sun.jersey#jersey-server;1.19.1 [runtime→runtime()]
loadData of com.sun.jersey#jersey-server;1.19.1 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.sun.jersey#jersey-server;1.19.1 [runtime→compile]
loadData of com.sun.jersey#jersey-server;1.19.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.netflix.eureka#eureka-core;1.7.2 [runtime→runtime()]
loadData of com.netflix.eureka#eureka-core;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.netflix.eureka#eureka-core;1.7.2 [runtime→compile]
loadData of com.netflix.eureka#eureka-core;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.netflix.archaius#archaius-core;0.7.4 [runtime→runtime()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→javax.inject#javax.inject;1 [runtime→runtime()]
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→javax.inject#javax.inject;1 [runtime→compile]
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 [runtime→runtime()]
loadData of com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 [runtime→compile]
loadData of com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11 [runtime→runtime()]
loadData of com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11 of rootConf=default
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11 [runtime→compile]
loadData of com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11 of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→org.codehaus.woodstox#stax2-api;3.1.4 [runtime→runtime()]
loadData of org.codehaus.woodstox#stax2-api;3.1.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→org.codehaus.woodstox#stax2-api;3.1.4 [runtime→compile]
loadData of org.codehaus.woodstox#stax2-api;3.1.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.woodstox#woodstox-core;5.0.3 [runtime→runtime()]
loadData of com.fasterxml.woodstox#woodstox-core;5.0.3 of rootConf=default
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.woodstox#woodstox-core;5.0.3 [runtime→compile]
loadData of com.fasterxml.woodstox#woodstox-core;5.0.3 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.fasterxml.woodstox#woodstox-core;5.0.3→org.codehaus.woodstox#stax2-api;3.1.4 [runtime→runtime()]
loadData of org.codehaus.woodstox#stax2-api;3.1.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.woodstox#woodstox-core;5.0.3→org.codehaus.woodstox#stax2-api;3.1.4 [runtime→compile]
loadData of org.codehaus.woodstox#stax2-api;3.1.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.thoughtworks.xstream#xstream;1.4.10 [runtime→runtime()]
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.thoughtworks.xstream#xstream;1.4.10 [runtime→compile]
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→com.netflix.ribbon#ribbon-eureka;2.2.5 [compile→master()]
loadData of com.netflix.ribbon#ribbon-eureka;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→com.netflix.ribbon#ribbon-eureka;2.2.5 [compile→compile()]
loadData of com.netflix.ribbon#ribbon-eureka;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→com.netflix.ribbon#ribbon-eureka;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-eureka;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→com.netflix.ribbon#ribbon-eureka;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-eureka;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-config-server/ivy-1.4.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-config-server/ivy-1.4.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE
found org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE in jcenter
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-config-client/ivy-1.4.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-config-client/ivy-1.4.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE
found org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [compile→master()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→master()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.security#spring-security-crypto;4.2.7.RELEASE [compile→master()]
loadData of org.springframework.security#spring-security-crypto;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.security#spring-security-crypto;4.2.7.RELEASE [compile→compile()]
loadData of org.springframework.security#spring-security-crypto;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.security#spring-security-rsa;1.0.3.RELEASE [compile→master()]
loadData of org.springframework.security#spring-security-rsa;1.0.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.security#spring-security-rsa;1.0.3.RELEASE [compile→compile()]
loadData of org.springframework.security#spring-security-rsa;1.0.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r [compile→master()]
loadData of org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r of rootConf=default
using downloadGrapes to resolve org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r
downloadGrapes: Checking cache for: dependency: org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.eclipse.jgit/org.eclipse.jgit/ivy-3.6.1.201501031845-r.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.eclipse.jgit/org.eclipse.jgit/ivy-3.6.1.201501031845-r.xml
downloadGrapes: module revision found in cache: org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r
found org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r in localm2
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r [compile→compile()]
loadData of org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r of rootConf=default
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r→com.jcraft#jsch;0.1.54 [compile→master()]
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.jcraft#jsch;0.1.54 of rootConf=default
using downloadGrapes to resolve com.jcraft#jsch;0.1.54
downloadGrapes: Checking cache for: dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.jcraft/jsch/ivy-0.1.54.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.jcraft#jsch;0.1.54 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.jcraft/jsch/ivy-0.1.54.xml
downloadGrapes: module revision found in cache: com.jcraft#jsch;0.1.54
found com.jcraft#jsch;0.1.54 in localm2
== resolving dependencies org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r→com.jcraft#jsch;0.1.54 [compile→compile()]
loadData of com.jcraft#jsch;0.1.54 of rootConf=default
== resolving dependencies org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r→com.googlecode.javaewah#JavaEWAH;0.7.9 [compile→master()]
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.googlecode.javaewah#JavaEWAH;0.7.9 of rootConf=default
using downloadGrapes to resolve com.googlecode.javaewah#JavaEWAH;0.7.9
downloadGrapes: Checking cache for: dependency: com.googlecode.javaewah#JavaEWAH;0.7.9 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.googlecode.javaewah/JavaEWAH/ivy-0.7.9.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.googlecode.javaewah#JavaEWAH;0.7.9 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.googlecode.javaewah/JavaEWAH/ivy-0.7.9.xml
downloadGrapes: module revision found in cache: com.googlecode.javaewah#JavaEWAH;0.7.9
found com.googlecode.javaewah#JavaEWAH;0.7.9 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r→com.googlecode.javaewah#JavaEWAH;0.7.9 [compile→compile()]
loadData of com.googlecode.javaewah#JavaEWAH;0.7.9 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r→org.apache.httpcomponents#httpclient;4.5.5 [compile→master()]
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r→org.apache.httpcomponents#httpclient;4.5.5 [compile→compile()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r [compile→runtime()]
loadData of org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r [compile→compile]
loadData of org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r of rootConf=default
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r→com.jcraft#jsch;0.1.54 [runtime→runtime()]
loadData of com.jcraft#jsch;0.1.54 of rootConf=default
== resolving dependencies org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r→com.jcraft#jsch;0.1.54 [runtime→compile]
loadData of com.jcraft#jsch;0.1.54 of rootConf=default
== resolving dependencies org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r→com.googlecode.javaewah#JavaEWAH;0.7.9 [runtime→runtime()]
loadData of com.googlecode.javaewah#JavaEWAH;0.7.9 of rootConf=default
== resolving dependencies org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r→com.googlecode.javaewah#JavaEWAH;0.7.9 [runtime→compile]
loadData of com.googlecode.javaewah#JavaEWAH;0.7.9 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r→org.apache.httpcomponents#httpclient;4.5.5 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r→org.apache.httpcomponents#httpclient;4.5.5 [runtime→compile]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.yaml#snakeyaml;1.17 [compile→master()]
loadData of org.yaml#snakeyaml;1.17 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.yaml#snakeyaml;1.17 [compile→compile()]
loadData of org.yaml#snakeyaml;1.17 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.security#spring-security-crypto;4.2.7.RELEASE [runtime→runtime()]
loadData of org.springframework.security#spring-security-crypto;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.security#spring-security-crypto;4.2.7.RELEASE [runtime→compile]
loadData of org.springframework.security#spring-security-crypto;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.security#spring-security-rsa;1.0.3.RELEASE [runtime→runtime()]
loadData of org.springframework.security#spring-security-rsa;1.0.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.security#spring-security-rsa;1.0.3.RELEASE [runtime→compile]
loadData of org.springframework.security#spring-security-rsa;1.0.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r [runtime→runtime()]
loadData of org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r [runtime→compile]
loadData of org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.yaml#snakeyaml;1.17 [runtime→runtime()]
loadData of org.yaml#snakeyaml;1.17 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.yaml#snakeyaml;1.17 [runtime→compile]
loadData of org.yaml#snakeyaml;1.17 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-config/ivy-1.4.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-config/ivy-1.4.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE
found org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE in jcenter
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→master()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-bus-amqp/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-bus-amqp/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE in jcenter
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-stream-rabbit/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-stream-rabbit/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-stream-binder-rabbit/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-stream-binder-rabbit/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-stream-binder-rabbit-core/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-stream-binder-rabbit-core/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-amqp/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-amqp/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE
found org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE→org.springframework.amqp#spring-rabbit;1.7.8.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework.amqp#spring-rabbit;1.7.8.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.amqp#spring-rabbit;1.7.8.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.amqp/spring-rabbit/ivy-1.7.8.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.amqp#spring-rabbit;1.7.8.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.amqp/spring-rabbit/ivy-1.7.8.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE
found org.springframework.amqp#spring-rabbit;1.7.8.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE→org.springframework.amqp#spring-rabbit;1.7.8.RELEASE [compile→compile()]
loadData of org.springframework.amqp#spring-rabbit;1.7.8.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-tx;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework#spring-tx;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-tx;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-tx;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework.amqp#spring-amqp;1.7.8.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework.amqp#spring-amqp;1.7.8.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.amqp#spring-amqp;1.7.8.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.amqp/spring-amqp/ivy-1.7.8.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.amqp#spring-amqp;1.7.8.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.amqp/spring-amqp/ivy-1.7.8.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.amqp#spring-amqp;1.7.8.RELEASE
found org.springframework.amqp#spring-amqp;1.7.8.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework.amqp#spring-amqp;1.7.8.RELEASE [compile→compile()]
loadData of org.springframework.amqp#spring-amqp;1.7.8.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
== resolving dependencies org.springframework.amqp#spring-amqp;1.7.8.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-amqp;1.7.8.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework.retry#spring-retry;1.2.2.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework.retry#spring-retry;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework.retry#spring-retry;1.2.2.RELEASE [compile→compile()]
loadData of org.springframework.retry#spring-retry;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→com.rabbitmq#http-client;1.1.1.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.rabbitmq#http-client;1.1.1.RELEASE of rootConf=default
using downloadGrapes to resolve com.rabbitmq#http-client;1.1.1.RELEASE
downloadGrapes: Checking cache for: dependency: com.rabbitmq#http-client;1.1.1.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.rabbitmq/http-client/ivy-1.1.1.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.rabbitmq#http-client;1.1.1.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.rabbitmq/http-client/ivy-1.1.1.RELEASE.xml
downloadGrapes: module revision found in cache: com.rabbitmq#http-client;1.1.1.RELEASE
found com.rabbitmq#http-client;1.1.1.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→com.rabbitmq#http-client;1.1.1.RELEASE [compile→compile()]
loadData of com.rabbitmq#http-client;1.1.1.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.rabbitmq#http-client;1.1.1.RELEASE→org.apache.httpcomponents#httpclient;4.5.5 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.rabbitmq#http-client;1.1.1.RELEASE→org.apache.httpcomponents#httpclient;4.5.5 [compile→compile()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.rabbitmq#http-client;1.1.1.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.rabbitmq#http-client;1.1.1.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→com.rabbitmq#amqp-client;4.0.3 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.rabbitmq#amqp-client;4.0.3 of rootConf=default
using downloadGrapes to resolve com.rabbitmq#amqp-client;4.0.3
downloadGrapes: Checking cache for: dependency: com.rabbitmq#amqp-client;4.0.3 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.rabbitmq/amqp-client/ivy-4.0.3.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.rabbitmq#amqp-client;4.0.3 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.rabbitmq/amqp-client/ivy-4.0.3.xml
downloadGrapes: module revision found in cache: com.rabbitmq#amqp-client;4.0.3
found com.rabbitmq#amqp-client;4.0.3 in localm2
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.21 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: io.dropwizard.metrics#metrics-core;3.1.2 {optional=[compile(), master()]} ⇒ dependency: io.dropwizard.metrics#metrics-core;3.1.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.7 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.7.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→com.rabbitmq#amqp-client;4.0.3 [compile→compile()]
loadData of com.rabbitmq#amqp-client;4.0.3 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.21 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: io.dropwizard.metrics#metrics-core;3.1.2 {optional=[compile(), master()]} ⇒ dependency: io.dropwizard.metrics#metrics-core;3.1.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.7 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.7.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
== resolving dependencies com.rabbitmq#amqp-client;4.0.3→org.slf4j#slf4j-api;1.7.25 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.21 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: io.dropwizard.metrics#metrics-core;3.1.2 {optional=[compile(), master()]} ⇒ dependency: io.dropwizard.metrics#metrics-core;3.1.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.7 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.7.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.21 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: io.dropwizard.metrics#metrics-core;3.1.2 {optional=[compile(), master()]} ⇒ dependency: io.dropwizard.metrics#metrics-core;3.1.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.7 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.7.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.21 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: io.dropwizard.metrics#metrics-core;3.1.2 {optional=[compile(), master()]} ⇒ dependency: io.dropwizard.metrics#metrics-core;3.1.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.7 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.7.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.21 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: io.dropwizard.metrics#metrics-core;3.1.2 {optional=[compile(), master()]} ⇒ dependency: io.dropwizard.metrics#metrics-core;3.1.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.7 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.7.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.rabbitmq#amqp-client;4.0.3→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE→org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.integration/spring-integration-amqp/ivy-4.3.17.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.integration/spring-integration-amqp/ivy-4.3.17.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE
found org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.6.11.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE→org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE [compile→compile()]
loadData of org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.6.11.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.6.11.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.6.11.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.6.11.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.6.11.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [compile→compile()]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE→org.springframework.amqp#spring-rabbit;1.7.8.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.6.11.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.6.11.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.6.11.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.6.11.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework.amqp#spring-rabbit;1.7.8.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE→org.springframework.amqp#spring-rabbit;1.7.8.RELEASE [compile→compile()]
loadData of org.springframework.amqp#spring-rabbit;1.7.8.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-stream-codec/ivy-1.3.3.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-stream-codec/ivy-1.3.3.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE
found org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-logging;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-logging;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE→com.esotericsoftware#kryo-shaded;3.0.3 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-logging;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-logging;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-logging;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-logging;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.esotericsoftware#kryo-shaded;3.0.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE→com.esotericsoftware#kryo-shaded;3.0.3 [compile→compile()]
loadData of com.esotericsoftware#kryo-shaded;3.0.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-logging;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-logging;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-logging;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-logging;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE [compile→master()]
loadData of org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE [compile→compile()]
loadData of org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE→org.springframework.amqp#spring-rabbit;1.7.8.RELEASE [runtime→runtime()]
loadData of org.springframework.amqp#spring-rabbit;1.7.8.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE→org.springframework.amqp#spring-rabbit;1.7.8.RELEASE [runtime→compile]
loadData of org.springframework.amqp#spring-rabbit;1.7.8.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-tx;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-tx;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-tx;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-tx;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework.amqp#spring-amqp;1.7.8.RELEASE [runtime→runtime()]
loadData of org.springframework.amqp#spring-amqp;1.7.8.RELEASE of rootConf=default
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework.amqp#spring-amqp;1.7.8.RELEASE [runtime→compile]
loadData of org.springframework.amqp#spring-amqp;1.7.8.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
== resolving dependencies org.springframework.amqp#spring-amqp;1.7.8.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-amqp;1.7.8.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework.retry#spring-retry;1.2.2.RELEASE [runtime→runtime()]
loadData of org.springframework.retry#spring-retry;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework.retry#spring-retry;1.2.2.RELEASE [runtime→compile]
loadData of org.springframework.retry#spring-retry;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→com.rabbitmq#http-client;1.1.1.RELEASE [runtime→runtime()]
loadData of com.rabbitmq#http-client;1.1.1.RELEASE of rootConf=default
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→com.rabbitmq#http-client;1.1.1.RELEASE [runtime→compile]
loadData of com.rabbitmq#http-client;1.1.1.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in runtime
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.rabbitmq#http-client;1.1.1.RELEASE→org.apache.httpcomponents#httpclient;4.5.5 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.rabbitmq#http-client;1.1.1.RELEASE→org.apache.httpcomponents#httpclient;4.5.5 [runtime→compile]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.rabbitmq#http-client;1.1.1.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.rabbitmq#http-client;1.1.1.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→com.rabbitmq#amqp-client;4.0.3 [runtime→runtime()]
loadData of com.rabbitmq#amqp-client;4.0.3 of rootConf=default
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→com.rabbitmq#amqp-client;4.0.3 [runtime→compile]
loadData of com.rabbitmq#amqp-client;4.0.3 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.21 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: io.dropwizard.metrics#metrics-core;3.1.2 {optional=[compile(), master()]} ⇒ dependency: io.dropwizard.metrics#metrics-core;3.1.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.7 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.7.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
== resolving dependencies com.rabbitmq#amqp-client;4.0.3→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.rabbitmq#amqp-client;4.0.3→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE→org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE [runtime→runtime()]
loadData of org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE→org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE [runtime→compile]
loadData of org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.6.11.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [runtime→runtime()]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [runtime→compile]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE→org.springframework.amqp#spring-rabbit;1.7.8.RELEASE [runtime→runtime()]
loadData of org.springframework.amqp#spring-rabbit;1.7.8.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE→org.springframework.amqp#spring-rabbit;1.7.8.RELEASE [runtime→compile]
loadData of org.springframework.amqp#spring-rabbit;1.7.8.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-logging;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE→com.esotericsoftware#kryo-shaded;3.0.3 [runtime→runtime()]
loadData of com.esotericsoftware#kryo-shaded;3.0.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE→com.esotericsoftware#kryo-shaded;3.0.3 [runtime→compile]
loadData of com.esotericsoftware#kryo-shaded;3.0.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE [runtime→runtime()]
loadData of org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE [runtime→compile]
loadData of org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working66→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working66→org.codehaus.groovy#groovy-xml;2.5.0 [default→default]
loadData of org.codehaus.groovy#groovy-xml;2.5.0 of rootConf=default
using downloadGrapes to resolve org.codehaus.groovy#groovy-xml;2.5.0
downloadGrapes: Checking cache for: dependency: org.codehaus.groovy#groovy-xml;2.5.0 {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.codehaus.groovy/groovy-xml/ivy-2.5.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.codehaus.groovy#groovy-xml;2.5.0 (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.codehaus.groovy/groovy-xml/ivy-2.5.0.xml
downloadGrapes: module revision found in cache: org.codehaus.groovy#groovy-xml;2.5.0
found org.codehaus.groovy#groovy-xml;2.5.0 in jcenter
== resolving dependencies caller#all-caller;working66→org.codehaus.groovy#groovy-xml;2.5.0 [default→runtime]
loadData of org.codehaus.groovy#groovy-xml;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working66→org.codehaus.groovy#groovy-xml;2.5.0 [default→compile]
loadData of org.codehaus.groovy#groovy-xml;2.5.0 of rootConf=default
== resolving dependencies org.codehaus.groovy#groovy-xml;2.5.0→org.codehaus.groovy#groovy;2.5.0 [compile→master()]
loadData of org.codehaus.groovy#groovy;2.5.0 of rootConf=default
using downloadGrapes to resolve org.codehaus.groovy#groovy;2.5.0
downloadGrapes: Checking cache for: dependency: org.codehaus.groovy#groovy;2.5.0 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.codehaus.groovy/groovy/ivy-2.5.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.codehaus.groovy#groovy;2.5.0 (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.codehaus.groovy/groovy/ivy-2.5.0.xml
downloadGrapes: module revision found in cache: org.codehaus.groovy#groovy;2.5.0
found org.codehaus.groovy#groovy;2.5.0 in jcenter
== resolving dependencies org.codehaus.groovy#groovy-xml;2.5.0→org.codehaus.groovy#groovy;2.5.0 [compile→compile()]
loadData of org.codehaus.groovy#groovy;2.5.0 of rootConf=default
== resolving dependencies org.codehaus.groovy#groovy-xml;2.5.0→org.codehaus.groovy#groovy;2.5.0 [compile→runtime()]
loadData of org.codehaus.groovy#groovy;2.5.0 of rootConf=default
== resolving dependencies org.codehaus.groovy#groovy-xml;2.5.0→org.codehaus.groovy#groovy;2.5.0 [compile→compile]
loadData of org.codehaus.groovy#groovy;2.5.0 of rootConf=default
== resolving dependencies org.codehaus.groovy#groovy-xml;2.5.0→org.codehaus.groovy#groovy;2.5.0 [runtime→runtime()]
loadData of org.codehaus.groovy#groovy;2.5.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.codehaus.groovy#groovy-xml;2.5.0→org.codehaus.groovy#groovy;2.5.0 [runtime→compile]
loadData of org.codehaus.groovy#groovy;2.5.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working66→org.codehaus.groovy#groovy-xml;2.5.0 [default→master]
loadData of org.codehaus.groovy#groovy-xml;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working66→org.codehaus.groovy#groovy-xml;2.5.0 [default→master()]
loadData of org.codehaus.groovy#groovy-xml;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working66→org.codehaus.groovy#groovy-xml;2.5.0 [default→runtime()]
loadData of org.codehaus.groovy#groovy-xml;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working66→org.codehaus.groovy#groovy-xml;2.5.0 [default→compile]
loadData of org.codehaus.groovy#groovy-xml;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working66→org.codehaus.groovy#groovy-xml;2.5.0 [default→compile()]
loadData of org.codehaus.groovy#groovy-xml;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working66→org.codehaus.groovy#groovy-nio;2.5.0 [default→default]
loadData of org.codehaus.groovy#groovy-nio;2.5.0 of rootConf=default
using downloadGrapes to resolve org.codehaus.groovy#groovy-nio;2.5.0
downloadGrapes: Checking cache for: dependency: org.codehaus.groovy#groovy-nio;2.5.0 {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.codehaus.groovy/groovy-nio/ivy-2.5.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.codehaus.groovy#groovy-nio;2.5.0 (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.codehaus.groovy/groovy-nio/ivy-2.5.0.xml
downloadGrapes: module revision found in cache: org.codehaus.groovy#groovy-nio;2.5.0
found org.codehaus.groovy#groovy-nio;2.5.0 in jcenter
== resolving dependencies caller#all-caller;working66→org.codehaus.groovy#groovy-nio;2.5.0 [default→runtime]
loadData of org.codehaus.groovy#groovy-nio;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working66→org.codehaus.groovy#groovy-nio;2.5.0 [default→compile]
loadData of org.codehaus.groovy#groovy-nio;2.5.0 of rootConf=default
== resolving dependencies org.codehaus.groovy#groovy-nio;2.5.0→org.codehaus.groovy#groovy;2.5.0 [compile→master()]
loadData of org.codehaus.groovy#groovy;2.5.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.codehaus.groovy#groovy-nio;2.5.0→org.codehaus.groovy#groovy;2.5.0 [compile→compile()]
loadData of org.codehaus.groovy#groovy;2.5.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.codehaus.groovy#groovy-nio;2.5.0→org.codehaus.groovy#groovy;2.5.0 [runtime→runtime()]
loadData of org.codehaus.groovy#groovy;2.5.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.codehaus.groovy#groovy-nio;2.5.0→org.codehaus.groovy#groovy;2.5.0 [runtime→compile]
loadData of org.codehaus.groovy#groovy;2.5.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working66→org.codehaus.groovy#groovy-nio;2.5.0 [default→master]
loadData of org.codehaus.groovy#groovy-nio;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working66→org.codehaus.groovy#groovy-nio;2.5.0 [default→master()]
loadData of org.codehaus.groovy#groovy-nio;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working66→org.codehaus.groovy#groovy-nio;2.5.0 [default→runtime()]
loadData of org.codehaus.groovy#groovy-nio;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working66→org.codehaus.groovy#groovy-nio;2.5.0 [default→compile]
loadData of org.codehaus.groovy#groovy-nio;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working66→org.codehaus.groovy#groovy-nio;2.5.0 [default→compile()]
loadData of org.codehaus.groovy#groovy-nio;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working66→org.codehaus.groovy#groovy-json;2.5.0 [default→default]
loadData of org.codehaus.groovy#groovy-json;2.5.0 of rootConf=default
using downloadGrapes to resolve org.codehaus.groovy#groovy-json;2.5.0
downloadGrapes: Checking cache for: dependency: org.codehaus.groovy#groovy-json;2.5.0 {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.codehaus.groovy/groovy-json/ivy-2.5.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.codehaus.groovy#groovy-json;2.5.0 (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.codehaus.groovy/groovy-json/ivy-2.5.0.xml
downloadGrapes: module revision found in cache: org.codehaus.groovy#groovy-json;2.5.0
found org.codehaus.groovy#groovy-json;2.5.0 in jcenter
== resolving dependencies caller#all-caller;working66→org.codehaus.groovy#groovy-json;2.5.0 [default→runtime]
loadData of org.codehaus.groovy#groovy-json;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working66→org.codehaus.groovy#groovy-json;2.5.0 [default→compile]
loadData of org.codehaus.groovy#groovy-json;2.5.0 of rootConf=default
== resolving dependencies org.codehaus.groovy#groovy-json;2.5.0→org.codehaus.groovy#groovy;2.5.0 [compile→master()]
loadData of org.codehaus.groovy#groovy;2.5.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.codehaus.groovy#groovy-json;2.5.0→org.codehaus.groovy#groovy;2.5.0 [compile→compile()]
loadData of org.codehaus.groovy#groovy;2.5.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.codehaus.groovy#groovy-json;2.5.0→org.codehaus.groovy#groovy;2.5.0 [runtime→runtime()]
loadData of org.codehaus.groovy#groovy;2.5.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.codehaus.groovy#groovy-json;2.5.0→org.codehaus.groovy#groovy;2.5.0 [runtime→compile]
loadData of org.codehaus.groovy#groovy;2.5.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working66→org.codehaus.groovy#groovy-json;2.5.0 [default→master]
loadData of org.codehaus.groovy#groovy-json;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working66→org.codehaus.groovy#groovy-json;2.5.0 [default→master()]
loadData of org.codehaus.groovy#groovy-json;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working66→org.codehaus.groovy#groovy-json;2.5.0 [default→runtime()]
loadData of org.codehaus.groovy#groovy-json;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working66→org.codehaus.groovy#groovy-json;2.5.0 [default→compile]
loadData of org.codehaus.groovy#groovy-json;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working66→org.codehaus.groovy#groovy-json;2.5.0 [default→compile()]
loadData of org.codehaus.groovy#groovy-json;2.5.0 of rootConf=default
Nbr of module to sort : 251
Sort dependencies of : org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE / Number of dependencies = 5
Sort dependencies of : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE / Number of dependencies = 11
Sort dependencies of : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE / Number of dependencies = 10
Sort dependencies of : org.springframework.boot#spring-boot;1.5.14.RELEASE / Number of dependencies = 69
Sort dependencies of : org.springframework#spring-core;4.3.18.RELEASE / Number of dependencies = 5
Sort dependencies of : commons-codec#commons-codec;1.10 / Number of dependencies = 1
Non matching revision detected when sorting. commons-codec#commons-codec depends on junit#junit;4.11, doesn’t match junit#junit;4.12
Sort done for : commons-codec#commons-codec;1.10
Sort dependencies of : commons-logging#commons-logging;1.2 / Number of dependencies = 5
Non matching revision detected when sorting. commons-logging#commons-logging depends on junit#junit;3.8.1, doesn’t match junit#junit;4.12
Sort done for : commons-logging#commons-logging;1.2
Non matching revision detected when sorting. org.springframework#spring-core depends on org.aspectj#aspectjweaver;1.8.9, doesn’t match org.aspectj#aspectjweaver;1.8.13
Sort done for : org.springframework#spring-core;4.3.18.RELEASE
Sort dependencies of : org.springframework#spring-context;4.3.18.RELEASE / Number of dependencies = 17
Sort dependencies of : javax.inject#javax.inject;1 / Number of dependencies = 0
Sort done for : javax.inject#javax.inject;1
Non matching revision detected when sorting. org.springframework#spring-context depends on javax.validation#validation-api;1.0.0.GA, doesn’t match javax.validation#validation-api;1.1.0.Final
Sort dependencies of : joda-time#joda-time;2.9.9 / Number of dependencies = 2
Non matching revision detected when sorting. joda-time#joda-time depends on junit#junit;3.8.2, doesn’t match junit#junit;4.12
Sort done for : joda-time#joda-time;2.9.9
Non matching revision detected when sorting. org.springframework#spring-context depends on org.aspectj#aspectjweaver;1.8.9, doesn’t match org.aspectj#aspectjweaver;1.8.13
Non matching revision detected when sorting. org.springframework#spring-context depends on org.hibernate#hibernate-validator;4.3.2.Final, doesn’t match org.hibernate#hibernate-validator;5.3.6.Final
Sort dependencies of : org.springframework#spring-aop;4.3.18.RELEASE / Number of dependencies = 6
Non matching revision detected when sorting. org.springframework#spring-aop depends on org.aspectj#aspectjweaver;1.8.9, doesn’t match org.aspectj#aspectjweaver;1.8.13
Sort dependencies of : org.springframework#spring-beans;4.3.18.RELEASE / Number of dependencies = 5
Module descriptor is processed : javax.inject#javax.inject;1
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Sort dependencies of : org.yaml#snakeyaml;1.17 / Number of dependencies = 4
Sort dependencies of : junit#junit;4.12 / Number of dependencies = 1
Sort dependencies of : org.hamcrest#hamcrest-core;1.3 / Number of dependencies = 0
Sort done for : org.hamcrest#hamcrest-core;1.3
Sort done for : junit#junit;4.12
Non matching revision detected when sorting. org.yaml#snakeyaml depends on joda-time#joda-time;1.6, doesn’t match joda-time#joda-time;2.9.9
Non matching revision detected when sorting. org.yaml#snakeyaml depends on joda-time#joda-time;1.6, doesn’t match joda-time#joda-time;2.7
Sort done for : org.yaml#snakeyaml;1.17
Sort done for : org.springframework#spring-beans;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Sort done for : org.springframework#spring-aop;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-beans;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Sort dependencies of : org.springframework#spring-expression;4.3.18.RELEASE / Number of dependencies = 1
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Sort done for : org.springframework#spring-expression;4.3.18.RELEASE
Sort done for : org.springframework#spring-context;4.3.18.RELEASE
Sort dependencies of : ch.qos.logback#logback-classic;1.1.11 / Number of dependencies = 25
Sort dependencies of : ch.qos.logback#logback-core;1.1.11 / Number of dependencies = 9
Sort dependencies of : org.mockito#mockito-core;1.10.19 / Number of dependencies = 2
Non matching revision detected when sorting. org.mockito#mockito-core depends on org.hamcrest#hamcrest-core;1.1, doesn’t match org.hamcrest#hamcrest-core;1.3
Sort dependencies of : org.objenesis#objenesis;2.1 / Number of dependencies = 1
Non matching revision detected when sorting. org.objenesis#objenesis depends on junit#junit;4.11, doesn’t match junit#junit;4.12
Sort done for : org.objenesis#objenesis;2.1
Sort done for : org.mockito#mockito-core;1.10.19
Non matching revision detected when sorting. ch.qos.logback#logback-core depends on joda-time#joda-time;2.9.2, doesn’t match joda-time#joda-time;2.9.9
Non matching revision detected when sorting. ch.qos.logback#logback-core depends on joda-time#joda-time;2.9.2, doesn’t match joda-time#joda-time;2.7
Non matching revision detected when sorting. ch.qos.logback#logback-core depends on junit#junit;4.10, doesn’t match junit#junit;4.12
Non matching revision detected when sorting. ch.qos.logback#logback-core depends on org.assertj#assertj-core;1.7.1, doesn’t match org.assertj#assertj-core;2.6.0
Sort done for : ch.qos.logback#logback-core;1.1.11
Non matching revision detected when sorting. ch.qos.logback#logback-classic depends on org.slf4j#slf4j-api;1.7.22, doesn’t match org.slf4j#slf4j-api;1.7.25
Non matching revision detected when sorting. ch.qos.logback#logback-classic depends on org.slf4j#slf4j-api;1.7.22, doesn’t match org.slf4j#slf4j-api;1.7.25
Non matching revision detected when sorting. ch.qos.logback#logback-classic depends on org.slf4j#log4j-over-slf4j;1.7.22, doesn’t match org.slf4j#log4j-over-slf4j;1.7.25
Non matching revision detected when sorting. ch.qos.logback#logback-classic depends on org.slf4j#jul-to-slf4j;1.7.22, doesn’t match org.slf4j#jul-to-slf4j;1.7.25
Module descriptor is processed : ch.qos.logback#logback-core;1.1.11
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Non matching revision detected when sorting. ch.qos.logback#logback-classic depends on junit#junit;4.10, doesn’t match junit#junit;4.12
Non matching revision detected when sorting. ch.qos.logback#logback-classic depends on org.assertj#assertj-core;1.7.1, doesn’t match org.assertj#assertj-core;2.6.0
Sort done for : ch.qos.logback#logback-classic;1.1.11
Sort dependencies of : com.fasterxml.jackson.core#jackson-databind;2.8.11.2 / Number of dependencies = 7
Sort dependencies of : com.fasterxml.jackson.core#jackson-annotations;2.8.0 / Number of dependencies = 1
Module descriptor is processed : junit#junit;4.12
Sort done for : com.fasterxml.jackson.core#jackson-annotations;2.8.0
Non matching revision detected when sorting. com.fasterxml.jackson.core#jackson-databind depends on com.fasterxml.jackson.core#jackson-core;2.8.10, doesn’t match com.fasterxml.jackson.core#jackson-core;2.8.11
Module descriptor is processed : junit#junit;4.12
Sort done for : com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Sort dependencies of : com.google.code.gson#gson;2.8.5 / Number of dependencies = 1
Module descriptor is processed : junit#junit;4.12
Sort done for : com.google.code.gson#gson;2.8.5
Module descriptor is processed : junit#junit;4.12
Sort dependencies of : org.apache.httpcomponents#httpclient;4.5.5 / Number of dependencies = 5
Sort dependencies of : org.apache.httpcomponents#httpcore;4.4.9 / Number of dependencies = 4
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : commons-logging#commons-logging;1.2
Non matching revision detected when sorting. org.apache.httpcomponents#httpcore depends on org.apache.commons#commons-lang3;3.4, doesn’t match org.apache.commons#commons-lang3;3.5
Sort done for : org.apache.httpcomponents#httpcore;4.4.9
Module descriptor is processed : commons-logging#commons-logging;1.2
Module descriptor is processed : commons-codec#commons-codec;1.10
Non matching revision detected when sorting. org.apache.httpcomponents#httpclient depends on junit#junit;4.11, doesn’t match junit#junit;4.12
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Sort done for : org.apache.httpcomponents#httpclient;4.5.5
Sort dependencies of : org.apache.tomcat.embed#tomcat-embed-core;8.5.31 / Number of dependencies = 1
Sort dependencies of : org.apache.tomcat#tomcat-annotations-api;8.5.31 / Number of dependencies = 0
Sort done for : org.apache.tomcat#tomcat-annotations-api;8.5.31
Sort done for : org.apache.tomcat.embed#tomcat-embed-core;8.5.31
Sort dependencies of : org.assertj#assertj-core;2.6.0 / Number of dependencies = 4
Module descriptor is processed : junit#junit;4.12
Non matching revision detected when sorting. org.assertj#assertj-core depends on org.mockito#mockito-core;2.2.9, doesn’t match org.mockito#mockito-core;1.10.19
Sort done for : org.assertj#assertj-core;2.6.0
Non matching revision detected when sorting. org.springframework.boot#spring-boot depends on org.codehaus.groovy#groovy;2.4.15, doesn’t match org.codehaus.groovy#groovy;2.5.0
Sort dependencies of : org.codehaus.groovy#groovy;2.4.15 / Number of dependencies = 5
Sort dependencies of : com.thoughtworks.xstream#xstream;1.4.10 / Number of dependencies = 21
Non matching revision detected when sorting. com.thoughtworks.xstream#xstream depends on joda-time#joda-time;1.6, doesn’t match joda-time#joda-time;2.9.9
Non matching revision detected when sorting. com.thoughtworks.xstream#xstream depends on joda-time#joda-time;1.6, doesn’t match joda-time#joda-time;2.7
Sort dependencies of : stax#stax-api;1.0.1 / Number of dependencies = 0
Sort done for : stax#stax-api;1.0.1
Sort dependencies of : xmlpull#xmlpull;1.1.3.1 / Number of dependencies = 0
Sort done for : xmlpull#xmlpull;1.1.3.1
Sort dependencies of : xpp3#xpp3_min;1.1.4c / Number of dependencies = 0
Sort done for : xpp3#xpp3_min;1.1.4c
Non matching revision detected when sorting. com.thoughtworks.xstream#xstream depends on org.codehaus.jettison#jettison;1.2, doesn’t match org.codehaus.jettison#jettison;1.3.7
Non matching revision detected when sorting. com.thoughtworks.xstream#xstream depends on junit#junit;3.8.1, doesn’t match junit#junit;4.12
Non matching revision detected when sorting. com.thoughtworks.xstream#xstream depends on commons-lang#commons-lang;2.4, doesn’t match commons-lang#commons-lang;2.6
Sort done for : com.thoughtworks.xstream#xstream;1.4.10
Sort done for : org.codehaus.groovy#groovy;2.4.15
Non matching revision detected when sorting. org.springframework.boot#spring-boot depends on org.codehaus.groovy#groovy-xml;2.4.15, doesn’t match org.codehaus.groovy#groovy-xml;2.5.0
Sort dependencies of : org.hamcrest#hamcrest-library;1.3 / Number of dependencies = 1
Module descriptor is processed : org.hamcrest#hamcrest-core;1.3
Sort done for : org.hamcrest#hamcrest-library;1.3
Sort dependencies of : org.hibernate#hibernate-validator;5.3.6.Final / Number of dependencies = 16
Sort dependencies of : javax.validation#validation-api;1.1.0.Final / Number of dependencies = 1
Sort done for : javax.validation#validation-api;1.1.0.Final
Non matching revision detected when sorting. org.hibernate#hibernate-validator depends on org.jboss.logging#jboss-logging;3.3.0.Final, doesn’t match org.jboss.logging#jboss-logging;3.3.2.Final
Non matching revision detected when sorting. org.hibernate#hibernate-validator depends on com.fasterxml#classmate;1.3.1, doesn’t match com.fasterxml#classmate;1.3.4
Non matching revision detected when sorting. org.hibernate#hibernate-validator depends on joda-time#joda-time;2.9.5, doesn’t match joda-time#joda-time;2.9.9
Non matching revision detected when sorting. org.hibernate#hibernate-validator depends on joda-time#joda-time;2.9.5, doesn’t match joda-time#joda-time;2.7
Sort done for : org.hibernate#hibernate-validator;5.3.6.Final
Sort dependencies of : org.slf4j#jul-to-slf4j;1.7.25 / Number of dependencies = 3
Sort dependencies of : org.slf4j#slf4j-api;1.7.25 / Number of dependencies = 1
Module descriptor is processed : junit#junit;4.12
Sort done for : org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : junit#junit;4.12
Sort done for : org.slf4j#jul-to-slf4j;1.7.25
Module descriptor is processed : org.slf4j#slf4j-api;1.7.25
Sort dependencies of : org.springframework#spring-test;4.3.18.RELEASE / Number of dependencies = 30
Non matching revision detected when sorting. org.springframework#spring-test depends on com.jayway.jsonpath#json-path;2.3.0, doesn’t match com.jayway.jsonpath#json-path;2.2.0
Module descriptor is processed : javax.inject#javax.inject;1
Module descriptor is processed : junit#junit;4.12
Non matching revision detected when sorting. org.springframework#spring-test depends on org.aspectj#aspectjweaver;1.8.9, doesn’t match org.aspectj#aspectjweaver;1.8.13
Module descriptor is processed : org.hamcrest#hamcrest-core;1.3
Sort dependencies of : org.skyscreamer#jsonassert;1.4.0 / Number of dependencies = 2
Sort dependencies of : com.vaadin.external.google#android-json;0.0.20131108.vaadin1 / Number of dependencies = 0
Sort done for : com.vaadin.external.google#android-json;0.0.20131108.vaadin1
Non matching revision detected when sorting. org.skyscreamer#jsonassert depends on junit#junit;4.10, doesn’t match junit#junit;4.12
Sort done for : org.skyscreamer#jsonassert;1.4.0
Module descriptor is processed : org.springframework#spring-aop;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-beans;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Sort dependencies of : org.springframework#spring-tx;4.3.18.RELEASE / Number of dependencies = 8
Module descriptor is processed : org.springframework#spring-aop;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-beans;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Sort done for : org.springframework#spring-tx;4.3.18.RELEASE
Sort dependencies of : org.springframework#spring-web;4.3.18.RELEASE / Number of dependencies = 29
Non matching revision detected when sorting. org.springframework#spring-web depends on com.fasterxml.jackson.core#jackson-databind;2.8.11.1, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Sort dependencies of : com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 / Number of dependencies = 8
Sort dependencies of : com.fasterxml.jackson.core#jackson-core;2.8.11 / Number of dependencies = 1
Module descriptor is processed : junit#junit;4.12
Sort done for : com.fasterxml.jackson.core#jackson-core;2.8.11
Module descriptor is processed : com.fasterxml.jackson.core#jackson-annotations;2.8.0
Non matching revision detected when sorting. com.fasterxml.jackson.dataformat#jackson-dataformat-xml depends on com.fasterxml.jackson.core#jackson-databind;2.8.11, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Sort dependencies of : com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11 / Number of dependencies = 6
Module descriptor is processed : com.fasterxml.jackson.core#jackson-core;2.8.11
Module descriptor is processed : com.fasterxml.jackson.core#jackson-annotations;2.8.0
Non matching revision detected when sorting. com.fasterxml.jackson.module#jackson-module-jaxb-annotations depends on com.fasterxml.jackson.core#jackson-databind;2.8.11, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : junit#junit;4.12
Sort dependencies of : javax.ws.rs#jsr311-api;1.1.1 / Number of dependencies = 1
Non matching revision detected when sorting. javax.ws.rs#jsr311-api depends on junit#junit;3.8.1, doesn’t match junit#junit;4.12
Sort done for : javax.ws.rs#jsr311-api;1.1.1
Sort done for : com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11
Sort dependencies of : javax.xml.stream#stax-api;1.0-2 / Number of dependencies = 0
Sort done for : javax.xml.stream#stax-api;1.0-2
Sort dependencies of : org.codehaus.woodstox#stax2-api;3.1.4 / Number of dependencies = 1
Module descriptor is processed : javax.xml.stream#stax-api;1.0-2
Sort done for : org.codehaus.woodstox#stax2-api;3.1.4
Sort dependencies of : com.fasterxml.woodstox#woodstox-core;5.0.3 / Number of dependencies = 7
Module descriptor is processed : javax.xml.stream#stax-api;1.0-2
Module descriptor is processed : org.codehaus.woodstox#stax2-api;3.1.4
Non matching revision detected when sorting. com.fasterxml.woodstox#woodstox-core depends on junit#junit;4.11, doesn’t match junit#junit;4.12
Sort done for : com.fasterxml.woodstox#woodstox-core;5.0.3
Module descriptor is processed : junit#junit;4.12
Sort done for : com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11
Non matching revision detected when sorting. org.springframework#spring-web depends on com.google.code.gson#gson;2.8.2, doesn’t match com.google.code.gson#gson;2.8.5
Non matching revision detected when sorting. org.springframework#spring-web depends on com.google.code.gson#gson;2.8.2, doesn’t match com.google.code.gson#gson;2.3.1
Sort dependencies of : com.google.protobuf#protobuf-java;2.6.1 / Number of dependencies = 3
Non matching revision detected when sorting. com.google.protobuf#protobuf-java depends on junit#junit;4.4, doesn’t match junit#junit;4.12
Sort done for : com.google.protobuf#protobuf-java;2.6.1
Non matching revision detected when sorting. org.springframework#spring-web depends on javax.validation#validation-api;1.0.0.GA, doesn’t match javax.validation#validation-api;1.1.0.Final
Module descriptor is processed : org.apache.httpcomponents#httpclient;4.5.5
Module descriptor is processed : org.springframework#spring-aop;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-beans;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Sort done for : org.springframework#spring-web;4.3.18.RELEASE
Sort dependencies of : org.springframework#spring-webmvc;4.3.18.RELEASE / Number of dependencies = 31
Non matching revision detected when sorting. org.springframework#spring-webmvc depends on com.fasterxml.jackson.core#jackson-databind;2.8.11.1, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11
Non matching revision detected when sorting. org.springframework#spring-webmvc depends on org.freemarker#freemarker;2.3.23, doesn’t match org.freemarker#freemarker;2.3.28
Module descriptor is processed : org.springframework#spring-aop;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-beans;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Sort dependencies of : org.springframework#spring-context-support;4.3.18.RELEASE / Number of dependencies = 16
Non matching revision detected when sorting. org.springframework#spring-context-support depends on com.google.guava#guava;20.0, doesn’t match com.google.guava#guava;18.0
Non matching revision detected when sorting. org.springframework#spring-context-support depends on org.freemarker#freemarker;2.3.23, doesn’t match org.freemarker#freemarker;2.3.28
Module descriptor is processed : org.springframework#spring-beans;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-tx;4.3.18.RELEASE
Sort done for : org.springframework#spring-context-support;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-expression;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-web;4.3.18.RELEASE
Sort done for : org.springframework#spring-webmvc;4.3.18.RELEASE
Sort done for : org.springframework#spring-test;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-web;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-webmvc;4.3.18.RELEASE
Module descriptor is processed : org.yaml#snakeyaml;1.17
Sort dependencies of : org.slf4j#jcl-over-slf4j;1.7.25 / Number of dependencies = 3
Module descriptor is processed : org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : junit#junit;4.12
Sort done for : org.slf4j#jcl-over-slf4j;1.7.25
Module descriptor is processed : org.springframework#spring-context-support;4.3.18.RELEASE
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot;1.5.14.RELEASE
Sort dependencies of : org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE / Number of dependencies = 129
Module descriptor is processed : org.springframework.boot#spring-boot;1.5.14.RELEASE
Module descriptor is processed : com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11
Module descriptor is processed : com.google.code.gson#gson;2.8.5
Module descriptor is processed : org.apache.tomcat.embed#tomcat-embed-core;8.5.31
Sort dependencies of : org.apache.tomcat.embed#tomcat-embed-el;8.5.31 / Number of dependencies = 0
Sort done for : org.apache.tomcat.embed#tomcat-embed-el;8.5.31
Sort dependencies of : org.freemarker#freemarker;2.3.28 / Number of dependencies = 0
Sort done for : org.freemarker#freemarker;2.3.28
Module descriptor is processed : org.hibernate#hibernate-validator;5.3.6.Final
Sort dependencies of : org.springframework.integration#spring-integration-core;4.3.17.RELEASE / Number of dependencies = 11
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-aop;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Sort dependencies of : org.springframework#spring-messaging;4.3.18.RELEASE / Number of dependencies = 10
Non matching revision detected when sorting. org.springframework#spring-messaging depends on com.fasterxml.jackson.core#jackson-databind;2.8.11.1, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : org.springframework#spring-beans;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Sort done for : org.springframework#spring-messaging;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-tx;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.integration#spring-integration-core depends on org.springframework.retry#spring-retry;1.1.3.RELEASE, doesn’t match org.springframework.retry#spring-retry;1.2.2.RELEASE
Non matching revision detected when sorting. org.springframework.integration#spring-integration-core depends on com.fasterxml.jackson.core#jackson-databind;2.8.10, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Sort dependencies of : com.jayway.jsonpath#json-path;2.2.0 / Number of dependencies = 6
Sort dependencies of : net.minidev#json-smart;2.2.1 / Number of dependencies = 2
Module descriptor is processed : junit#junit;4.12
Sort dependencies of : net.minidev#accessors-smart;1.1 / Number of dependencies = 2
Non matching revision detected when sorting. net.minidev#accessors-smart depends on junit#junit;3.8.2, doesn’t match junit#junit;4.12
Sort dependencies of : org.ow2.asm#asm;5.0.3 / Number of dependencies = 0
Sort done for : org.ow2.asm#asm;5.0.3
Sort done for : net.minidev#accessors-smart;1.1
Sort done for : net.minidev#json-smart;2.2.1
Non matching revision detected when sorting. com.jayway.jsonpath#json-path depends on com.google.code.gson#gson;2.3.1, doesn’t match com.google.code.gson#gson;2.8.5
Sort dependencies of : com.google.code.gson#gson;2.3.1 / Number of dependencies = 1
Non matching revision detected when sorting. com.google.code.gson#gson depends on junit#junit;3.8.2, doesn’t match junit#junit;4.12
Sort done for : com.google.code.gson#gson;2.3.1
Non matching revision detected when sorting. com.jayway.jsonpath#json-path depends on com.fasterxml.jackson.core#jackson-databind;2.6.3, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Non matching revision detected when sorting. com.jayway.jsonpath#json-path depends on org.slf4j#slf4j-api;1.7.16, doesn’t match org.slf4j#slf4j-api;1.7.25
Sort done for : com.jayway.jsonpath#json-path;2.2.0
Sort dependencies of : com.esotericsoftware#kryo-shaded;3.0.3 / Number of dependencies = 6
Sort dependencies of : com.esotericsoftware#minlog;1.3.0 / Number of dependencies = 1
Non matching revision detected when sorting. com.esotericsoftware#minlog depends on junit#junit;4.11, doesn’t match junit#junit;4.12
Sort done for : com.esotericsoftware#minlog;1.3.0
Module descriptor is processed : org.objenesis#objenesis;2.1
Non matching revision detected when sorting. com.esotericsoftware#kryo-shaded depends on junit#junit;4.8.2, doesn’t match junit#junit;4.12
Module descriptor is processed : com.esotericsoftware#minlog;1.3.0
Module descriptor is processed : org.objenesis#objenesis;2.1
Non matching revision detected when sorting. com.esotericsoftware#kryo-shaded depends on junit#junit;4.8.2, doesn’t match junit#junit;4.12
Sort done for : com.esotericsoftware#kryo-shaded;3.0.3
Sort done for : org.springframework.integration#spring-integration-core;4.3.17.RELEASE
Sort dependencies of : org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE / Number of dependencies = 1
Module descriptor is processed : org.springframework.integration#spring-integration-core;4.3.17.RELEASE
Sort done for : org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE
Module descriptor is processed : org.springframework#spring-tx;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-web;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-webmvc;4.3.18.RELEASE
Sort dependencies of : org.springframework.security#spring-security-web;4.2.7.RELEASE / Number of dependencies = 31
Sort dependencies of : aopalliance#aopalliance;1.0 / Number of dependencies = 0
Sort done for : aopalliance#aopalliance;1.0
Sort dependencies of : org.springframework.security#spring-security-core;4.2.7.RELEASE / Number of dependencies = 28
Module descriptor is processed : aopalliance#aopalliance;1.0
Module descriptor is processed : org.springframework#spring-aop;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-beans;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-expression;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.security#spring-security-core depends on com.fasterxml.jackson.core#jackson-databind;2.8.11.1, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : commons-logging#commons-logging;1.2
Non matching revision detected when sorting. org.springframework.security#spring-security-core depends on org.aspectj#aspectjrt;1.8.12, doesn’t match org.aspectj#aspectjrt;1.8.13
Module descriptor is processed : org.springframework#spring-tx;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.security#spring-security-core depends on ch.qos.logback#logback-classic;1.1.2, doesn’t match ch.qos.logback#logback-classic;1.1.11
Sort dependencies of : commons-collections#commons-collections;3.2.2 / Number of dependencies = 1
Non matching revision detected when sorting. commons-collections#commons-collections depends on junit#junit;3.8.1, doesn’t match junit#junit;4.12
Sort done for : commons-collections#commons-collections;3.2.2
Module descriptor is processed : junit#junit;4.12
Non matching revision detected when sorting. org.springframework.security#spring-security-core depends on org.assertj#assertj-core;2.2.0, doesn’t match org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.skyscreamer#jsonassert;1.4.0
Module descriptor is processed : org.slf4j#jcl-over-slf4j;1.7.25
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.security#spring-security-core;4.2.7.RELEASE
Module descriptor is processed : org.springframework#spring-beans;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-expression;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-web;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.security#spring-security-web depends on com.fasterxml.jackson.core#jackson-databind;2.8.11.1, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : commons-logging#commons-logging;1.2
Module descriptor is processed : org.springframework#spring-tx;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-webmvc;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.security#spring-security-web depends on ch.qos.logback#logback-classic;1.1.2, doesn’t match ch.qos.logback#logback-classic;1.1.11
Non matching revision detected when sorting. org.springframework.security#spring-security-web depends on commons-codec#commons-codec;1.3, doesn’t match commons-codec#commons-codec;1.10
Module descriptor is processed : junit#junit;4.12
Non matching revision detected when sorting. org.springframework.security#spring-security-web depends on org.assertj#assertj-core;2.2.0, doesn’t match org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.skyscreamer#jsonassert;1.4.0
Module descriptor is processed : org.slf4j#jcl-over-slf4j;1.7.25
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.security#spring-security-web;4.2.7.RELEASE
Sort dependencies of : org.springframework.security#spring-security-config;4.2.7.RELEASE / Number of dependencies = 52
Module descriptor is processed : aopalliance#aopalliance;1.0
Module descriptor is processed : org.springframework.security#spring-security-core;4.2.7.RELEASE
Module descriptor is processed : org.springframework#spring-aop;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-beans;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Module descriptor is processed : commons-logging#commons-logging;1.2
Non matching revision detected when sorting. org.springframework.security#spring-security-config depends on org.aspectj#aspectjweaver;1.8.12, doesn’t match org.aspectj#aspectjweaver;1.8.13
Module descriptor is processed : org.springframework.security#spring-security-web;4.2.7.RELEASE
Module descriptor is processed : org.springframework#spring-tx;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-web;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-webmvc;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.security#spring-security-config depends on ch.qos.logback#logback-classic;1.1.2, doesn’t match ch.qos.logback#logback-classic;1.1.11
Module descriptor is processed : junit#junit;4.12
Non matching revision detected when sorting. org.springframework.security#spring-security-config depends on org.assertj#assertj-core;2.2.0, doesn’t match org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.slf4j#jcl-over-slf4j;1.7.25
Module descriptor is processed : org.springframework#spring-expression;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.security#spring-security-config;4.2.7.RELEASE
Sort dependencies of : org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE / Number of dependencies = 25
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on org.springframework#spring-beans;4.0.9.RELEASE, doesn’t match org.springframework#spring-beans;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on org.springframework#spring-core;4.0.9.RELEASE, doesn’t match org.springframework#spring-core;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on org.springframework#spring-context;4.0.9.RELEASE, doesn’t match org.springframework#spring-context;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on org.springframework#spring-aop;4.0.9.RELEASE, doesn’t match org.springframework#spring-aop;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on org.springframework#spring-webmvc;4.0.9.RELEASE, doesn’t match org.springframework#spring-webmvc;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on org.springframework#spring-test;4.0.9.RELEASE, doesn’t match org.springframework#spring-test;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on org.springframework.security#spring-security-core;3.2.10.RELEASE, doesn’t match org.springframework.security#spring-security-core;4.2.7.RELEASE
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on org.springframework.security#spring-security-config;3.2.10.RELEASE, doesn’t match org.springframework.security#spring-security-config;4.2.7.RELEASE
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on org.springframework.security#spring-security-web;3.2.10.RELEASE, doesn’t match org.springframework.security#spring-security-web;4.2.7.RELEASE
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on commons-codec#commons-codec;1.9, doesn’t match commons-codec#commons-codec;1.10
Sort dependencies of : org.codehaus.jackson#jackson-mapper-asl;1.9.13 / Number of dependencies = 1
Sort dependencies of : org.codehaus.jackson#jackson-core-asl;1.9.13 / Number of dependencies = 0
Sort done for : org.codehaus.jackson#jackson-core-asl;1.9.13
Sort done for : org.codehaus.jackson#jackson-mapper-asl;1.9.13
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on com.fasterxml.jackson.core#jackson-annotations;2.3.2, doesn’t match com.fasterxml.jackson.core#jackson-annotations;2.8.0
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on com.fasterxml.jackson.core#jackson-databind;2.3.2, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on org.apache.httpcomponents#httpclient;4.3.3, doesn’t match org.apache.httpcomponents#httpclient;4.5.5
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on junit#junit;4.11, doesn’t match junit#junit;4.12
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on org.mockito#mockito-core;1.9.5, doesn’t match org.mockito#mockito-core;1.10.19
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on org.slf4j#slf4j-api;1.7.6, doesn’t match org.slf4j#slf4j-api;1.7.25
Sort done for : org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE
Sort dependencies of : org.springframework.amqp#spring-rabbit;1.7.8.RELEASE / Number of dependencies = 12
Non matching revision detected when sorting. org.springframework.amqp#spring-rabbit depends on org.springframework#spring-aop;4.3.15.RELEASE, doesn’t match org.springframework#spring-aop;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.amqp#spring-rabbit depends on org.springframework#spring-tx;4.3.15.RELEASE, doesn’t match org.springframework#spring-tx;4.3.18.RELEASE
Sort dependencies of : org.springframework.amqp#spring-amqp;1.7.8.RELEASE / Number of dependencies = 8
Non matching revision detected when sorting. org.springframework.amqp#spring-amqp depends on org.springframework#spring-core;4.3.15.RELEASE, doesn’t match org.springframework#spring-core;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.amqp#spring-amqp depends on com.fasterxml.jackson.core#jackson-databind;2.8.11.1, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Non matching revision detected when sorting. org.springframework.amqp#spring-amqp depends on org.springframework#spring-messaging;4.3.15.RELEASE, doesn’t match org.springframework#spring-messaging;4.3.18.RELEASE
Module descriptor is processed : org.codehaus.jackson#jackson-mapper-asl;1.9.13
Non matching revision detected when sorting. org.springframework.amqp#spring-amqp depends on org.springframework#spring-context;4.3.15.RELEASE, doesn’t match org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : org.codehaus.jackson#jackson-core-asl;1.9.13
Module descriptor is processed : com.fasterxml.jackson.core#jackson-core;2.8.11
Sort done for : org.springframework.amqp#spring-amqp;1.7.8.RELEASE
Sort dependencies of : org.springframework.retry#spring-retry;1.2.2.RELEASE / Number of dependencies = 10
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Non matching revision detected when sorting. org.springframework.retry#spring-retry depends on org.aspectj#aspectjrt;1.8.9, doesn’t match org.aspectj#aspectjrt;1.8.13
Non matching revision detected when sorting. org.springframework.retry#spring-retry depends on org.aspectj#aspectjweaver;1.8.9, doesn’t match org.aspectj#aspectjweaver;1.8.13
Non matching revision detected when sorting. org.springframework.retry#spring-retry depends on org.springframework#spring-test;4.3.13.RELEASE, doesn’t match org.springframework#spring-test;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.retry#spring-retry depends on org.springframework#spring-context;4.3.13.RELEASE, doesn’t match org.springframework#spring-context;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.retry#spring-retry depends on org.springframework#spring-core;4.3.13.RELEASE, doesn’t match org.springframework#spring-core;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.retry#spring-retry depends on org.springframework#spring-tx;4.3.13.RELEASE, doesn’t match org.springframework#spring-tx;4.3.18.RELEASE
Sort done for : org.springframework.retry#spring-retry;1.2.2.RELEASE
Sort dependencies of : com.rabbitmq#http-client;1.1.1.RELEASE / Number of dependencies = 3
Non matching revision detected when sorting. com.rabbitmq#http-client depends on org.springframework#spring-web;4.3.6.RELEASE, doesn’t match org.springframework#spring-web;4.3.18.RELEASE
Non matching revision detected when sorting. com.rabbitmq#http-client depends on org.apache.httpcomponents#httpclient;4.3.6, doesn’t match org.apache.httpcomponents#httpclient;4.5.5
Non matching revision detected when sorting. com.rabbitmq#http-client depends on com.fasterxml.jackson.core#jackson-databind;2.8.4, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Sort done for : com.rabbitmq#http-client;1.1.1.RELEASE
Sort dependencies of : com.rabbitmq#amqp-client;4.0.3 / Number of dependencies = 7
Non matching revision detected when sorting. com.rabbitmq#amqp-client depends on org.slf4j#slf4j-api;1.7.21, doesn’t match org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : junit#junit;4.12
Non matching revision detected when sorting. com.rabbitmq#amqp-client depends on ch.qos.logback#logback-classic;1.1.7, doesn’t match ch.qos.logback#logback-classic;1.1.11
Non matching revision detected when sorting. com.rabbitmq#amqp-client depends on org.mockito#mockito-core;2.7.9, doesn’t match org.mockito#mockito-core;1.10.19
Sort done for : com.rabbitmq#amqp-client;4.0.3
Module descriptor is processed : ch.qos.logback#logback-classic;1.1.11
Non matching revision detected when sorting. org.springframework.amqp#spring-rabbit depends on org.springframework#spring-messaging;4.3.15.RELEASE, doesn’t match org.springframework#spring-messaging;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.amqp#spring-rabbit depends on org.springframework#spring-context;4.3.15.RELEASE, doesn’t match org.springframework#spring-context;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.amqp#spring-rabbit depends on org.springframework#spring-web;4.3.15.RELEASE, doesn’t match org.springframework#spring-web;4.3.18.RELEASE
Sort done for : org.springframework.amqp#spring-rabbit;1.7.8.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE / Number of dependencies = 17
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-spring-service-connector depends on org.springframework.amqp#spring-rabbit;1.1.1.RELEASE, doesn’t match org.springframework.amqp#spring-rabbit;1.7.8.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE / Number of dependencies = 0
Sort done for : org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-spring-service-connector depends on org.springframework#spring-context;3.1.4.RELEASE, doesn’t match org.springframework#spring-context;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-spring-service-connector depends on org.springframework#spring-context-support;3.1.4.RELEASE, doesn’t match org.springframework#spring-context-support;4.3.18.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE
Sort dependencies of : org.aspectj#aspectjweaver;1.8.13 / Number of dependencies = 0
Sort done for : org.aspectj#aspectjweaver;1.8.13
Module descriptor is processed : org.springframework.boot#spring-boot;1.5.14.RELEASE
Sort dependencies of : org.springframework.boot#spring-boot-test;1.5.14.RELEASE / Number of dependencies = 33
Module descriptor is processed : org.springframework.boot#spring-boot;1.5.14.RELEASE
Module descriptor is processed : com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : com.google.code.gson#gson;2.8.5
Module descriptor is processed : com.jayway.jsonpath#json-path;2.2.0
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.apache.httpcomponents#httpclient;4.5.5
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.hamcrest#hamcrest-core;1.3
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.skyscreamer#jsonassert;1.4.0
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-web;4.3.18.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot;1.5.14.RELEASE
Module descriptor is processed : ch.qos.logback#logback-classic;1.1.11
Module descriptor is processed : org.apache.tomcat.embed#tomcat-embed-core;8.5.31
Non matching revision detected when sorting. org.springframework.boot#spring-boot-test depends on org.codehaus.groovy#groovy;2.4.15, doesn’t match org.codehaus.groovy#groovy;2.5.0
Module descriptor is processed : org.codehaus.groovy#groovy;2.4.15
Non matching revision detected when sorting. org.springframework.boot#spring-boot-test depends on org.codehaus.groovy#groovy-xml;2.4.15, doesn’t match org.codehaus.groovy#groovy-xml;2.5.0
Module descriptor is processed : org.slf4j#jcl-over-slf4j;1.7.25
Module descriptor is processed : org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : org.springframework#spring-webmvc;4.3.18.RELEASE
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-test;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-test;1.5.14.RELEASE
Module descriptor is processed : ch.qos.logback#logback-classic;1.1.11
Sort dependencies of : org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 / Number of dependencies = 1
Module descriptor is processed : org.apache.tomcat.embed#tomcat-embed-core;8.5.31
Sort done for : org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Module descriptor is processed : org.yaml#snakeyaml;1.17
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
Sort dependencies of : org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE / Number of dependencies = 9
Module descriptor is processed : ch.qos.logback#logback-classic;1.1.11
Module descriptor is processed : org.slf4j#jcl-over-slf4j;1.7.25
Module descriptor is processed : org.slf4j#jul-to-slf4j;1.7.25
Sort dependencies of : org.slf4j#log4j-over-slf4j;1.7.25 / Number of dependencies = 3
Module descriptor is processed : org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : junit#junit;4.12
Sort done for : org.slf4j#log4j-over-slf4j;1.7.25
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Module descriptor is processed : org.yaml#snakeyaml;1.17
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Sort dependencies of : org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE / Number of dependencies = 8
Module descriptor is processed : org.apache.tomcat.embed#tomcat-embed-core;8.5.31
Module descriptor is processed : org.apache.tomcat.embed#tomcat-embed-el;8.5.31
Module descriptor is processed : org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE
Module descriptor is processed : org.hibernate#hibernate-validator;5.3.6.Final
Module descriptor is processed : com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : org.springframework#spring-web;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-webmvc;4.3.18.RELEASE
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Sort dependencies of : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE / Number of dependencies = 16
Module descriptor is processed : org.springframework.boot#spring-boot-test;1.5.14.RELEASE
Sort dependencies of : org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE / Number of dependencies = 36
Module descriptor is processed : org.springframework.boot#spring-boot-test;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : com.jayway.jsonpath#json-path;2.2.0
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-web;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-webmvc;4.3.18.RELEASE
Module descriptor is processed : org.springframework.security#spring-security-config;4.2.7.RELEASE
Module descriptor is processed : ch.qos.logback#logback-classic;1.1.11
Sort dependencies of : org.aspectj#aspectjrt;1.8.13 / Number of dependencies = 0
Sort done for : org.aspectj#aspectjrt;1.8.13
Module descriptor is processed : org.aspectj#aspectjweaver;1.8.13
Module descriptor is processed : org.skyscreamer#jsonassert;1.4.0
Module descriptor is processed : org.hibernate#hibernate-validator;5.3.6.Final
Module descriptor is processed : org.apache.tomcat.embed#tomcat-embed-el;8.5.31
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : com.jayway.jsonpath#json-path;2.2.0
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-core;1.3
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.skyscreamer#jsonassert;1.4.0
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort dependencies of : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE / Number of dependencies = 7
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Sort dependencies of : org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE / Number of dependencies = 75
Module descriptor is processed : org.springframework.boot#spring-boot;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11
Sort dependencies of : com.google.guava#guava;18.0 / Number of dependencies = 1
Non matching revision detected when sorting. com.google.guava#guava depends on com.google.code.findbugs#jsr305;1.3.9, doesn’t match com.google.code.findbugs#jsr305;3.0.1
Sort done for : com.google.guava#guava;18.0
Module descriptor is processed : org.hibernate#hibernate-validator;5.3.6.Final
Module descriptor is processed : org.springframework#spring-messaging;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-webmvc;4.3.18.RELEASE
Module descriptor is processed : org.springframework.integration#spring-integration-core;4.3.17.RELEASE
Module descriptor is processed : org.springframework.security#spring-security-web;4.2.7.RELEASE
Module descriptor is processed : org.springframework.security#spring-security-config;4.2.7.RELEASE
Module descriptor is processed : org.apache.tomcat.embed#tomcat-embed-core;8.5.31
Module descriptor is processed : org.apache.tomcat.embed#tomcat-embed-el;8.5.31
Module descriptor is processed : org.springframework.amqp#spring-rabbit;1.7.8.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-test;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-test;1.5.14.RELEASE
Module descriptor is processed : ch.qos.logback#logback-classic;1.1.11
Module descriptor is processed : com.jayway.jsonpath#json-path;2.2.0
Module descriptor is processed : org.aspectj#aspectjrt;1.8.13
Module descriptor is processed : org.skyscreamer#jsonassert;1.4.0
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Module descriptor is processed : org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE
Module descriptor is processed : org.yaml#snakeyaml;1.17
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE / Number of dependencies = 11
Sort dependencies of : org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE / Number of dependencies = 16
Module descriptor is processed : org.springframework#spring-web;4.3.18.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE / Number of dependencies = 15
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Sort dependencies of : org.springframework.security#spring-security-crypto;4.2.7.RELEASE / Number of dependencies = 8
Module descriptor is processed : commons-logging#commons-logging;1.2
Non matching revision detected when sorting. org.springframework.security#spring-security-crypto depends on org.bouncycastle#bcpkix-jdk15on;1.54, doesn’t match org.bouncycastle#bcpkix-jdk15on;1.55
Non matching revision detected when sorting. org.springframework.security#spring-security-crypto depends on ch.qos.logback#logback-classic;1.1.2, doesn’t match ch.qos.logback#logback-classic;1.1.11
Module descriptor is processed : junit#junit;4.12
Non matching revision detected when sorting. org.springframework.security#spring-security-crypto depends on org.assertj#assertj-core;2.2.0, doesn’t match org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.slf4j#jcl-over-slf4j;1.7.25
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.security#spring-security-crypto;4.2.7.RELEASE
Sort dependencies of : org.springframework.security#spring-security-rsa;1.0.3.RELEASE / Number of dependencies = 5
Non matching revision detected when sorting. org.springframework.security#spring-security-rsa depends on org.springframework.security#spring-security-crypto;3.2.8.RELEASE, doesn’t match org.springframework.security#spring-security-crypto;4.2.7.RELEASE
Non matching revision detected when sorting. org.springframework.security#spring-security-rsa depends on org.springframework#spring-core;4.1.9.RELEASE, doesn’t match org.springframework#spring-core;4.3.18.RELEASE
Sort dependencies of : org.bouncycastle#bcpkix-jdk15on;1.55 / Number of dependencies = 1
Sort dependencies of : org.bouncycastle#bcprov-jdk15on;1.55 / Number of dependencies = 0
Sort done for : org.bouncycastle#bcprov-jdk15on;1.55
Sort done for : org.bouncycastle#bcpkix-jdk15on;1.55
Non matching revision detected when sorting. org.springframework.security#spring-security-rsa depends on junit#junit;4.11, doesn’t match junit#junit;4.12
Sort done for : org.springframework.security#spring-security-rsa;1.0.3.RELEASE
Module descriptor is processed : org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE
Sort dependencies of : org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE / Number of dependencies = 8
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Module descriptor is processed : org.springframework#spring-aop;4.3.18.RELEASE
Module descriptor is processed : org.aspectj#aspectjweaver;1.8.13
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE
Module descriptor is processed : org.springframework.retry#spring-retry;1.2.2.RELEASE
Module descriptor is processed : com.jayway.jsonpath#json-path;2.2.0
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-commons depends on org.apache.httpcomponents#httpclient;4.5.1, doesn’t match org.apache.httpcomponents#httpclient;4.5.5
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE / Number of dependencies = 12
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE
Module descriptor is processed : org.springframework.security#spring-security-crypto;4.2.7.RELEASE
Module descriptor is processed : org.springframework.security#spring-security-rsa;1.0.3.RELEASE
Module descriptor is processed : org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
Sort dependencies of : org.springframework.vault#spring-vault-core;1.1.2.RELEASE / Number of dependencies = 17
Non matching revision detected when sorting. org.springframework.vault#spring-vault-core depends on com.fasterxml.jackson.core#jackson-databind;2.8.11.1, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Non matching revision detected when sorting. org.springframework.vault#spring-vault-core depends on org.springframework#spring-core;4.3.15.RELEASE, doesn’t match org.springframework#spring-core;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.vault#spring-vault-core depends on org.springframework#spring-beans;4.3.15.RELEASE, doesn’t match org.springframework#spring-beans;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.vault#spring-vault-core depends on org.springframework#spring-web;4.3.15.RELEASE, doesn’t match org.springframework#spring-web;4.3.18.RELEASE
Module descriptor is processed : org.apache.httpcomponents#httpclient;4.5.5
Module descriptor is processed : org.apache.httpcomponents#httpcore;4.4.9
Non matching revision detected when sorting. org.springframework.vault#spring-vault-core depends on com.amazonaws#aws-java-sdk-core;1.11.208, doesn’t match com.amazonaws#aws-java-sdk-core;1.11.125
Non matching revision detected when sorting. org.springframework.vault#spring-vault-core depends on org.springframework#spring-test;4.3.15.RELEASE, doesn’t match org.springframework#spring-test;4.3.18.RELEASE
Module descriptor is processed : junit#junit;4.12
Non matching revision detected when sorting. org.springframework.vault#spring-vault-core depends on org.mockito#mockito-core;2.10.0, doesn’t match org.mockito#mockito-core;1.10.19
Non matching revision detected when sorting. org.springframework.vault#spring-vault-core depends on org.assertj#assertj-core;3.8.0, doesn’t match org.assertj#assertj-core;2.6.0
Non matching revision detected when sorting. org.springframework.vault#spring-vault-core depends on com.jayway.jsonpath#json-path;2.4.0, doesn’t match com.jayway.jsonpath#json-path;2.2.0
Sort done for : org.springframework.vault#spring-vault-core;1.1.2.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-vault-config depends on com.amazonaws#aws-java-sdk-core;1.11.345, doesn’t match com.amazonaws#aws-java-sdk-core;1.11.125
Module descriptor is processed : org.apache.httpcomponents#httpcore;4.4.9
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE
Module descriptor is processed : org.hibernate#hibernate-validator;5.3.6.Final
Module descriptor is processed : org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-vault-config depends on org.assertj#assertj-core;2.8.0, doesn’t match org.assertj#assertj-core;2.6.0
Sort done for : org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE
Sort dependencies of : org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE / Number of dependencies = 8
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Module descriptor is processed : org.springframework#spring-messaging;4.3.18.RELEASE
Module descriptor is processed : org.springframework.amqp#spring-rabbit;1.7.8.RELEASE
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE
Module descriptor is processed : org.hibernate#hibernate-validator;5.3.6.Final
Module descriptor is processed : org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-vault-config-rabbitmq depends on org.assertj#assertj-core;2.8.0, doesn’t match org.assertj#assertj-core;2.6.0
Sort done for : org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE / Number of dependencies = 12
Module descriptor is processed : org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE / Number of dependencies = 4
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE / Number of dependencies = 9
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE / Number of dependencies = 16
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE
Module descriptor is processed : org.springframework.retry#spring-retry;1.2.2.RELEASE
Sort dependencies of : com.ecwid.consul#consul-api;1.3.0 / Number of dependencies = 8
Non matching revision detected when sorting. com.ecwid.consul#consul-api depends on com.google.code.gson#gson;2.8.2, doesn’t match com.google.code.gson#gson;2.8.5
Non matching revision detected when sorting. com.ecwid.consul#consul-api depends on com.google.code.gson#gson;2.8.2, doesn’t match com.google.code.gson#gson;2.3.1
Non matching revision detected when sorting. com.ecwid.consul#consul-api depends on org.apache.httpcomponents#httpcore;4.4.8, doesn’t match org.apache.httpcomponents#httpcore;4.4.9
Non matching revision detected when sorting. com.ecwid.consul#consul-api depends on org.apache.httpcomponents#httpclient;4.5.3, doesn’t match org.apache.httpcomponents#httpclient;4.5.5
Module descriptor is processed : junit#junit;4.12
Non matching revision detected when sorting. com.ecwid.consul#consul-api depends on org.mockito#mockito-core;2.8.9, doesn’t match org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Sort done for : com.ecwid.consul#consul-api;1.3.0
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-consul-core depends on com.google.code.gson#gson;2.3.1, doesn’t match com.google.code.gson#gson;2.8.5
Module descriptor is processed : com.google.code.gson#gson;2.3.1
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-consul-core depends on org.apache.httpcomponents#httpclient;4.5.2, doesn’t match org.apache.httpcomponents#httpclient;4.5.5
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-consul-core depends on org.apache.httpcomponents#httpcore;4.4.5, doesn’t match org.apache.httpcomponents#httpcore;4.4.9
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-consul-core depends on org.apache.httpcomponents#httpclient;4.5.2, doesn’t match org.apache.httpcomponents#httpclient;4.5.5
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-consul-core depends on org.apache.httpcomponents#httpcore;4.4.5, doesn’t match org.apache.httpcomponents#httpcore;4.4.9
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE
Module descriptor is processed : com.ecwid.consul#consul-api;1.3.0
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-starter-consul depends on com.google.code.gson#gson;2.3.1, doesn’t match com.google.code.gson#gson;2.8.5
Module descriptor is processed : com.google.code.gson#gson;2.3.1
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-starter-consul depends on org.apache.httpcomponents#httpclient;4.5.2, doesn’t match org.apache.httpcomponents#httpclient;4.5.5
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-starter-consul depends on org.apache.httpcomponents#httpcore;4.4.5, doesn’t match org.apache.httpcomponents#httpcore;4.4.9
Sort done for : org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE / Number of dependencies = 11
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Module descriptor is processed : com.ecwid.consul#consul-api;1.3.0
Module descriptor is processed : org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
Module descriptor is processed : org.springframework.retry#spring-retry;1.2.2.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE / Number of dependencies = 8
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE / Number of dependencies = 24
Module descriptor is processed : org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE / Number of dependencies = 15
Module descriptor is processed : org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
Module descriptor is processed : org.springframework#spring-web;4.3.18.RELEASE
Module descriptor is processed : com.fasterxml.jackson.core#jackson-annotations;2.8.0
Module descriptor is processed : org.springframework.retry#spring-retry;1.2.2.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE
Module descriptor is processed : com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Module descriptor is processed : commons-codec#commons-codec;1.10
Sort done for : org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE / Number of dependencies = 15
Module descriptor is processed : org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.security#spring-security-crypto;4.2.7.RELEASE
Module descriptor is processed : org.springframework.security#spring-security-rsa;1.0.3.RELEASE
Sort dependencies of : org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r / Number of dependencies = 3
Non matching revision detected when sorting. org.eclipse.jgit#org.eclipse.jgit depends on com.jcraft#jsch;0.1.50, doesn’t match com.jcraft#jsch;0.1.54
Sort dependencies of : com.googlecode.javaewah#JavaEWAH;0.7.9 / Number of dependencies = 1
Non matching revision detected when sorting. com.googlecode.javaewah#JavaEWAH depends on junit#junit;4.10, doesn’t match junit#junit;4.12
Sort done for : com.googlecode.javaewah#JavaEWAH;0.7.9
Non matching revision detected when sorting. org.eclipse.jgit#org.eclipse.jgit depends on org.apache.httpcomponents#httpclient;4.1.3, doesn’t match org.apache.httpcomponents#httpclient;4.5.5
Sort done for : org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r
Module descriptor is processed : org.yaml#snakeyaml;1.17
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-config-server depends on com.amazonaws#aws-java-sdk-core;1.11.52, doesn’t match com.amazonaws#aws-java-sdk-core;1.11.125
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE
Module descriptor is processed : com.ecwid.consul#consul-api;1.3.0
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-consul-discovery depends on com.google.code.gson#gson;2.3.1, doesn’t match com.google.code.gson#gson;2.8.5
Module descriptor is processed : com.google.code.gson#gson;2.3.1
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-consul-discovery depends on org.apache.httpcomponents#httpclient;4.5.2, doesn’t match org.apache.httpcomponents#httpclient;4.5.5
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-consul-discovery depends on org.apache.httpcomponents#httpcore;4.4.5, doesn’t match org.apache.httpcomponents#httpcore;4.4.9
Sort dependencies of : org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE / Number of dependencies = 38
Module descriptor is processed : org.springframework.boot#spring-boot;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Sort dependencies of : org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE / Number of dependencies = 9
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Module descriptor is processed : org.springframework#spring-aop;4.3.18.RELEASE
Module descriptor is processed : org.springframework.security#spring-security-config;4.2.7.RELEASE
Module descriptor is processed : org.springframework.security#spring-security-web;4.2.7.RELEASE
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE
Module descriptor is processed : org.springframework.retry#spring-retry;1.2.2.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
Sort dependencies of : com.netflix.archaius#archaius-core;0.7.4 / Number of dependencies = 7
Sort dependencies of : com.google.code.findbugs#jsr305;3.0.1 / Number of dependencies = 0
Sort done for : com.google.code.findbugs#jsr305;3.0.1
Sort dependencies of : commons-configuration#commons-configuration;1.8 / Number of dependencies = 27
Non matching revision detected when sorting. commons-configuration#commons-configuration depends on commons-collections#commons-collections;3.2.1, doesn’t match commons-collections#commons-collections;3.2.2
Sort dependencies of : commons-lang#commons-lang;2.6 / Number of dependencies = 1
Non matching revision detected when sorting. commons-lang#commons-lang depends on junit#junit;3.8.1, doesn’t match junit#junit;4.12
Sort done for : commons-lang#commons-lang;2.6
Non matching revision detected when sorting. commons-configuration#commons-configuration depends on commons-logging#commons-logging;1.1.1, doesn’t match commons-logging#commons-logging;1.2
Non matching revision detected when sorting. commons-configuration#commons-configuration depends on commons-beanutils#commons-beanutils;1.8.3, doesn’t match commons-beanutils#commons-beanutils;1.9.3
Non matching revision detected when sorting. commons-configuration#commons-configuration depends on commons-codec#commons-codec;1.5, doesn’t match commons-codec#commons-codec;1.10
Sort dependencies of : commons-jxpath#commons-jxpath;1.3 / Number of dependencies = 8
Non matching revision detected when sorting. commons-jxpath#commons-jxpath depends on junit#junit;3.8.1, doesn’t match junit#junit;4.12
Non matching revision detected when sorting. commons-jxpath#commons-jxpath depends on commons-beanutils#commons-beanutils;1.7.0, doesn’t match commons-beanutils#commons-beanutils;1.9.3
Sort done for : commons-jxpath#commons-jxpath;1.3
Non matching revision detected when sorting. commons-configuration#commons-configuration depends on junit#junit;4.10, doesn’t match junit#junit;4.12
Non matching revision detected when sorting. commons-configuration#commons-configuration depends on org.slf4j#slf4j-api;1.5.6, doesn’t match org.slf4j#slf4j-api;1.7.25
Sort done for : commons-configuration#commons-configuration;1.8
Non matching revision detected when sorting. com.netflix.archaius#archaius-core depends on org.slf4j#slf4j-api;1.6.4, doesn’t match org.slf4j#slf4j-api;1.7.25
Non matching revision detected when sorting. com.netflix.archaius#archaius-core depends on com.google.guava#guava;16.0, doesn’t match com.google.guava#guava;18.0
Non matching revision detected when sorting. com.netflix.archaius#archaius-core depends on com.fasterxml.jackson.core#jackson-annotations;2.4.3, doesn’t match com.fasterxml.jackson.core#jackson-annotations;2.8.0
Non matching revision detected when sorting. com.netflix.archaius#archaius-core depends on com.fasterxml.jackson.core#jackson-core;2.4.3, doesn’t match com.fasterxml.jackson.core#jackson-core;2.8.11
Non matching revision detected when sorting. com.netflix.archaius#archaius-core depends on com.fasterxml.jackson.core#jackson-databind;2.4.3, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Sort done for : com.netflix.archaius#archaius-core;0.7.4
Module descriptor is processed : commons-configuration#commons-configuration;1.8
Sort dependencies of : com.netflix.servo#servo-core;0.10.1 / Number of dependencies = 4
Non matching revision detected when sorting. com.netflix.servo#servo-core depends on org.slf4j#slf4j-api;1.7.12, doesn’t match org.slf4j#slf4j-api;1.7.25
Non matching revision detected when sorting. com.netflix.servo#servo-core depends on com.google.guava#guava;16.0.1, doesn’t match com.google.guava#guava;18.0
Sort dependencies of : com.google.code.findbugs#annotations;2.0.0 / Number of dependencies = 0
Sort done for : com.google.code.findbugs#annotations;2.0.0
Sort dependencies of : com.netflix.servo#servo-internal;0.10.1 / Number of dependencies = 3
Non matching revision detected when sorting. com.netflix.servo#servo-internal depends on org.slf4j#slf4j-api;1.7.12, doesn’t match org.slf4j#slf4j-api;1.7.25
Non matching revision detected when sorting. com.netflix.servo#servo-internal depends on com.google.guava#guava;16.0.1, doesn’t match com.google.guava#guava;18.0
Module descriptor is processed : com.google.code.findbugs#annotations;2.0.0
Sort done for : com.netflix.servo#servo-internal;0.10.1
Sort done for : com.netflix.servo#servo-core;0.10.1
Sort dependencies of : com.netflix.netflix-commons#netflix-commons-util;0.1.1 / Number of dependencies = 3
Non matching revision detected when sorting. com.netflix.netflix-commons#netflix-commons-util depends on junit#junit;4.10, doesn’t match junit#junit;4.12
Non matching revision detected when sorting. com.netflix.netflix-commons#netflix-commons-util depends on org.slf4j#slf4j-api;1.6.4, doesn’t match org.slf4j#slf4j-api;1.7.25
Sort done for : com.netflix.netflix-commons#netflix-commons-util;0.1.1
Module descriptor is processed : javax.inject#javax.inject;1
Sort dependencies of : com.netflix.ribbon#ribbon-loadbalancer;2.2.5 / Number of dependencies = 8
Sort dependencies of : com.netflix.ribbon#ribbon-core;2.2.5 / Number of dependencies = 6
Non matching revision detected when sorting. com.netflix.ribbon#ribbon-core depends on org.slf4j#slf4j-api;1.6.4, doesn’t match org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : com.google.code.findbugs#annotations;2.0.0
Non matching revision detected when sorting. com.netflix.ribbon#ribbon-core depends on com.google.guava#guava;16.0, doesn’t match com.google.guava#guava;18.0
Module descriptor is processed : commons-configuration#commons-configuration;1.8
Module descriptor is processed : commons-lang#commons-lang;2.6
Module descriptor is processed : com.netflix.archaius#archaius-core;0.7.4
Sort done for : com.netflix.ribbon#ribbon-core;2.2.5
Sort dependencies of : com.netflix.netflix-commons#netflix-statistics;0.1.1 / Number of dependencies = 4
Non matching revision detected when sorting. com.netflix.netflix-commons#netflix-statistics depends on junit#junit;4.10, doesn’t match junit#junit;4.12
Non matching revision detected when sorting. com.netflix.netflix-commons#netflix-statistics depends on org.slf4j#slf4j-api;1.6.4, doesn’t match org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : com.google.code.findbugs#annotations;2.0.0
Sort done for : com.netflix.netflix-commons#netflix-statistics;0.1.1
Non matching revision detected when sorting. com.netflix.ribbon#ribbon-loadbalancer depends on io.reactivex#rxjava;1.0.9, doesn’t match io.reactivex#rxjava;1.2.0
Non matching revision detected when sorting. com.netflix.ribbon#ribbon-loadbalancer depends on org.slf4j#slf4j-api;1.7.12, doesn’t match org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : com.netflix.servo#servo-core;0.10.1
Non matching revision detected when sorting. com.netflix.ribbon#ribbon-loadbalancer depends on com.google.guava#guava;16.0.1, doesn’t match com.google.guava#guava;18.0
Module descriptor is processed : com.netflix.archaius#archaius-core;0.7.4
Module descriptor is processed : com.netflix.netflix-commons#netflix-commons-util;0.1.1
Sort done for : com.netflix.ribbon#ribbon-loadbalancer;2.2.5
Sort dependencies of : com.netflix.hystrix#hystrix-core;1.5.12 / Number of dependencies = 4
Non matching revision detected when sorting. com.netflix.hystrix#hystrix-core depends on org.slf4j#slf4j-api;1.7.0, doesn’t match org.slf4j#slf4j-api;1.7.25
Non matching revision detected when sorting. com.netflix.hystrix#hystrix-core depends on com.netflix.archaius#archaius-core;0.4.1, doesn’t match com.netflix.archaius#archaius-core;0.7.4
Sort dependencies of : io.reactivex#rxjava;1.2.0 / Number of dependencies = 0
Sort done for : io.reactivex#rxjava;1.2.0
Sort dependencies of : org.hdrhistogram#HdrHistogram;2.1.9 / Number of dependencies = 1
Non matching revision detected when sorting. org.hdrhistogram#HdrHistogram depends on junit#junit;4.10, doesn’t match junit#junit;4.12
Sort done for : org.hdrhistogram#HdrHistogram;2.1.9
Sort done for : com.netflix.hystrix#hystrix-core;1.5.12
Sort dependencies of : com.netflix.ribbon#ribbon;2.2.5 / Number of dependencies = 16
Module descriptor is processed : com.netflix.ribbon#ribbon-core;2.2.5
Sort dependencies of : com.netflix.ribbon#ribbon-transport;2.2.5 / Number of dependencies = 10
Module descriptor is processed : com.netflix.ribbon#ribbon-core;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-loadbalancer;2.2.5
Non matching revision detected when sorting. com.netflix.ribbon#ribbon-transport depends on io.reactivex#rxjava;1.0.10, doesn’t match io.reactivex#rxjava;1.2.0
Sort dependencies of : io.reactivex#rxnetty;0.4.9 / Number of dependencies = 4
Non matching revision detected when sorting. io.reactivex#rxnetty depends on io.reactivex#rxjava;1.0.10, doesn’t match io.reactivex#rxjava;1.2.0
Sort dependencies of : io.netty#netty-codec-http;4.0.27.Final / Number of dependencies = 11
Sort dependencies of : io.netty#netty-codec;4.0.27.Final / Number of dependencies = 14
Sort dependencies of : io.netty#netty-transport;4.0.27.Final / Number of dependencies = 9
Sort dependencies of : io.netty#netty-buffer;4.0.27.Final / Number of dependencies = 9
Sort dependencies of : io.netty#netty-common;4.0.27.Final / Number of dependencies = 12
Non matching revision detected when sorting. io.netty#netty-common depends on org.slf4j#slf4j-api;1.7.5, doesn’t match org.slf4j#slf4j-api;1.7.25
Non matching revision detected when sorting. io.netty#netty-common depends on commons-logging#commons-logging;1.1.3, doesn’t match commons-logging#commons-logging;1.2
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Non matching revision detected when sorting. io.netty#netty-common depends on org.mockito#mockito-core;1.10.8, doesn’t match org.mockito#mockito-core;1.10.19
Non matching revision detected when sorting. io.netty#netty-common depends on ch.qos.logback#logback-classic;1.0.13, doesn’t match ch.qos.logback#logback-classic;1.1.11
Sort done for : io.netty#netty-common;4.0.27.Final
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Non matching revision detected when sorting. io.netty#netty-buffer depends on org.mockito#mockito-core;1.10.8, doesn’t match org.mockito#mockito-core;1.10.19
Non matching revision detected when sorting. io.netty#netty-buffer depends on ch.qos.logback#logback-classic;1.0.13, doesn’t match ch.qos.logback#logback-classic;1.1.11
Sort done for : io.netty#netty-buffer;4.0.27.Final
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Non matching revision detected when sorting. io.netty#netty-transport depends on org.mockito#mockito-core;1.10.8, doesn’t match org.mockito#mockito-core;1.10.19
Non matching revision detected when sorting. io.netty#netty-transport depends on ch.qos.logback#logback-classic;1.0.13, doesn’t match ch.qos.logback#logback-classic;1.1.11
Sort done for : io.netty#netty-transport;4.0.27.Final
Non matching revision detected when sorting. io.netty#netty-codec depends on com.google.protobuf#protobuf-java;2.5.0, doesn’t match com.google.protobuf#protobuf-java;2.6.1
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Non matching revision detected when sorting. io.netty#netty-codec depends on org.mockito#mockito-core;1.10.8, doesn’t match org.mockito#mockito-core;1.10.19
Non matching revision detected when sorting. io.netty#netty-codec depends on ch.qos.logback#logback-classic;1.0.13, doesn’t match ch.qos.logback#logback-classic;1.1.11
Sort done for : io.netty#netty-codec;4.0.27.Final
Sort dependencies of : io.netty#netty-handler;4.0.27.Final / Number of dependencies = 17
Module descriptor is processed : io.netty#netty-buffer;4.0.27.Final
Module descriptor is processed : io.netty#netty-transport;4.0.27.Final
Module descriptor is processed : io.netty#netty-codec;4.0.27.Final
Non matching revision detected when sorting. io.netty#netty-handler depends on org.bouncycastle#bcpkix-jdk15on;1.50, doesn’t match org.bouncycastle#bcpkix-jdk15on;1.55
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Non matching revision detected when sorting. io.netty#netty-handler depends on org.mockito#mockito-core;1.10.8, doesn’t match org.mockito#mockito-core;1.10.19
Non matching revision detected when sorting. io.netty#netty-handler depends on ch.qos.logback#logback-classic;1.0.13, doesn’t match ch.qos.logback#logback-classic;1.1.11
Sort done for : io.netty#netty-handler;4.0.27.Final
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Non matching revision detected when sorting. io.netty#netty-codec-http depends on org.mockito#mockito-core;1.10.8, doesn’t match org.mockito#mockito-core;1.10.19
Non matching revision detected when sorting. io.netty#netty-codec-http depends on ch.qos.logback#logback-classic;1.0.13, doesn’t match ch.qos.logback#logback-classic;1.1.11
Sort done for : io.netty#netty-codec-http;4.0.27.Final
Sort dependencies of : io.netty#netty-transport-native-epoll;4.0.27.Final / Number of dependencies = 13
Module descriptor is processed : io.netty#netty-common;4.0.27.Final
Module descriptor is processed : io.netty#netty-buffer;4.0.27.Final
Module descriptor is processed : io.netty#netty-transport;4.0.27.Final
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Non matching revision detected when sorting. io.netty#netty-transport-native-epoll depends on org.mockito#mockito-core;1.10.8, doesn’t match org.mockito#mockito-core;1.10.19
Non matching revision detected when sorting. io.netty#netty-transport-native-epoll depends on ch.qos.logback#logback-classic;1.0.13, doesn’t match ch.qos.logback#logback-classic;1.1.11
Sort done for : io.netty#netty-transport-native-epoll;4.0.27.Final
Non matching revision detected when sorting. io.reactivex#rxnetty depends on org.slf4j#slf4j-api;1.7.6, doesn’t match org.slf4j#slf4j-api;1.7.25
Sort done for : io.reactivex#rxnetty;0.4.9
Sort dependencies of : io.reactivex#rxnetty-contexts;0.4.9 / Number of dependencies = 2
Non matching revision detected when sorting. io.reactivex#rxnetty-contexts depends on io.reactivex#rxjava;1.0.10, doesn’t match io.reactivex#rxjava;1.2.0
Module descriptor is processed : io.reactivex#rxnetty;0.4.9
Sort done for : io.reactivex#rxnetty-contexts;0.4.9
Sort dependencies of : io.reactivex#rxnetty-servo;0.4.9 / Number of dependencies = 3
Non matching revision detected when sorting. io.reactivex#rxnetty-servo depends on io.reactivex#rxjava;1.0.10, doesn’t match io.reactivex#rxjava;1.2.0
Module descriptor is processed : io.reactivex#rxnetty;0.4.9
Non matching revision detected when sorting. io.reactivex#rxnetty-servo depends on com.netflix.servo#servo-core;0.7.5, doesn’t match com.netflix.servo#servo-core;0.10.1
Sort done for : io.reactivex#rxnetty-servo;0.4.9
Module descriptor is processed : javax.inject#javax.inject;1
Non matching revision detected when sorting. com.netflix.ribbon#ribbon-transport depends on org.slf4j#slf4j-api;1.7.12, doesn’t match org.slf4j#slf4j-api;1.7.25
Non matching revision detected when sorting. com.netflix.ribbon#ribbon-transport depends on com.google.guava#guava;16.0.1, doesn’t match com.google.guava#guava;18.0
Module descriptor is processed : com.netflix.archaius#archaius-core;0.7.4
Sort done for : com.netflix.ribbon#ribbon-transport;2.2.5
Non matching revision detected when sorting. com.netflix.ribbon#ribbon depends on com.netflix.hystrix#hystrix-core;1.4.3, doesn’t match com.netflix.hystrix#hystrix-core;1.5.12
Module descriptor is processed : javax.inject#javax.inject;1
Non matching revision detected when sorting. com.netflix.ribbon#ribbon depends on io.reactivex#rxjava;1.0.10, doesn’t match io.reactivex#rxjava;1.2.0
Module descriptor is processed : io.reactivex#rxnetty;0.4.9
Module descriptor is processed : commons-configuration#commons-configuration;1.8
Non matching revision detected when sorting. com.netflix.ribbon#ribbon depends on com.google.guava#guava;16.0.1, doesn’t match com.google.guava#guava;18.0
Module descriptor is processed : com.netflix.archaius#archaius-core;0.7.4
Module descriptor is processed : junit#junit;4.12
Sort dependencies of : com.netflix.ribbon#ribbon-eureka;2.2.5 / Number of dependencies = 6
Module descriptor is processed : com.netflix.ribbon#ribbon-core;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-loadbalancer;2.2.5
Non matching revision detected when sorting. com.netflix.ribbon#ribbon-eureka depends on com.netflix.eureka#eureka-client;1.4.6, doesn’t match com.netflix.eureka#eureka-client;1.7.2
Module descriptor is processed : com.google.code.findbugs#annotations;2.0.0
Non matching revision detected when sorting. com.netflix.ribbon#ribbon-eureka depends on org.slf4j#slf4j-api;1.7.12, doesn’t match org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : com.netflix.archaius#archaius-core;0.7.4
Sort done for : com.netflix.ribbon#ribbon-eureka;2.2.5
Sort done for : com.netflix.ribbon#ribbon;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-core;2.2.5
Sort dependencies of : com.netflix.ribbon#ribbon-httpclient;2.2.5 / Number of dependencies = 12
Module descriptor is processed : com.netflix.ribbon#ribbon-core;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-loadbalancer;2.2.5
Module descriptor is processed : commons-collections#commons-collections;3.2.2
Non matching revision detected when sorting. com.netflix.ribbon#ribbon-httpclient depends on org.apache.httpcomponents#httpclient;4.2.1, doesn’t match org.apache.httpcomponents#httpclient;4.5.5
Module descriptor is processed : com.google.code.findbugs#annotations;2.0.0
Sort dependencies of : com.sun.jersey#jersey-client;1.19.1 / Number of dependencies = 3
Non matching revision detected when sorting. com.sun.jersey#jersey-client depends on junit#junit;4.8.2, doesn’t match junit#junit;4.12
Sort done for : com.sun.jersey#jersey-client;1.19.1
Sort dependencies of : com.sun.jersey.contribs#jersey-apache-client4;1.19.1 / Number of dependencies = 2
Non matching revision detected when sorting. com.sun.jersey.contribs#jersey-apache-client4 depends on org.apache.httpcomponents#httpclient;4.1.1, doesn’t match org.apache.httpcomponents#httpclient;4.5.5
Non matching revision detected when sorting. com.sun.jersey.contribs#jersey-apache-client4 depends on junit#junit;4.8.2, doesn’t match junit#junit;4.12
Sort done for : com.sun.jersey.contribs#jersey-apache-client4;1.19.1
Non matching revision detected when sorting. com.netflix.ribbon#ribbon-httpclient depends on org.slf4j#slf4j-api;1.7.12, doesn’t match org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : com.netflix.servo#servo-core;0.10.1
Non matching revision detected when sorting. com.netflix.ribbon#ribbon-httpclient depends on com.google.guava#guava;16.0.1, doesn’t match com.google.guava#guava;18.0
Module descriptor is processed : com.netflix.archaius#archaius-core;0.7.4
Module descriptor is processed : com.netflix.netflix-commons#netflix-commons-util;0.1.1
Sort done for : com.netflix.ribbon#ribbon-httpclient;2.2.5
Module descriptor is processed : io.reactivex#rxjava;1.2.0
Module descriptor is processed : com.sun.jersey.contribs#jersey-apache-client4;1.19.1
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Module descriptor is processed : org.aspectj#aspectjweaver;1.8.13
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-netflix-core depends on com.google.protobuf#protobuf-java;3.4.0, doesn’t match com.google.protobuf#protobuf-java;2.6.1
Sort done for : org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE / Number of dependencies = 2
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE / Number of dependencies = 8
Sort dependencies of : org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE / Number of dependencies = 5
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Module descriptor is processed : org.springframework.security#spring-security-rsa;1.0.3.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE
Module descriptor is processed : com.netflix.archaius#archaius-core;0.7.4
Module descriptor is processed : commons-configuration#commons-configuration;1.8
Module descriptor is processed : com.fasterxml.jackson.core#jackson-annotations;2.8.0
Module descriptor is processed : com.fasterxml.jackson.core#jackson-core;2.8.11
Module descriptor is processed : com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : com.google.guava#guava;18.0
Sort done for : org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE
Module descriptor is processed : com.netflix.ribbon#ribbon;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-core;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-httpclient;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-loadbalancer;2.2.5
Module descriptor is processed : org.springframework.retry#spring-retry;1.2.2.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-consul-discovery depends on joda-time#joda-time;2.7, doesn’t match joda-time#joda-time;2.9.9
Sort dependencies of : joda-time#joda-time;2.7 / Number of dependencies = 2
Non matching revision detected when sorting. joda-time#joda-time depends on junit#junit;3.8.2, doesn’t match junit#junit;4.12
Sort done for : joda-time#joda-time;2.7
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE / Number of dependencies = 2
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE / Number of dependencies = 8
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE
Module descriptor is processed : com.netflix.ribbon#ribbon;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-core;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-httpclient;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-loadbalancer;2.2.5
Module descriptor is processed : io.reactivex#rxjava;1.2.0
Sort done for : org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-starter-consul-discovery depends on joda-time#joda-time;2.7, doesn’t match joda-time#joda-time;2.9.9
Module descriptor is processed : joda-time#joda-time;2.7
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE
Module descriptor is processed : org.hibernate#hibernate-validator;5.3.6.Final
Module descriptor is processed : org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-vault-config-consul depends on org.assertj#assertj-core;2.8.0, doesn’t match org.assertj#assertj-core;2.6.0
Sort done for : org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE / Number of dependencies = 17
Module descriptor is processed : org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE
Module descriptor is processed : org.apache.httpcomponents#httpclient;4.5.5
Module descriptor is processed : org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE
Module descriptor is processed : org.hibernate#hibernate-validator;5.3.6.Final
Module descriptor is processed : org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-vault-config-databases depends on org.assertj#assertj-core;2.8.0, doesn’t match org.assertj#assertj-core;2.6.0
Sort done for : org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE / Number of dependencies = 10
Module descriptor is processed : org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE
Module descriptor is processed : org.hibernate#hibernate-validator;5.3.6.Final
Module descriptor is processed : org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-vault-config-aws depends on org.assertj#assertj-core;2.8.0, doesn’t match org.assertj#assertj-core;2.6.0
Sort done for : org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE / Number of dependencies = 27
Sort dependencies of : org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE / Number of dependencies = 32
Sort dependencies of : org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE / Number of dependencies = 10
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-contract-spec depends on org.codehaus.groovy#groovy;2.4.15, doesn’t match org.codehaus.groovy#groovy;2.5.0
Module descriptor is processed : org.codehaus.groovy#groovy;2.4.15
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-contract-spec depends on org.codehaus.groovy#groovy-nio;2.4.15, doesn’t match org.codehaus.groovy#groovy-nio;2.5.0
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-contract-spec depends on org.codehaus.groovy#groovy-json;2.4.15, doesn’t match org.codehaus.groovy#groovy-json;2.5.0
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-contract-spec depends on org.codehaus.groovy#groovy-xml;2.4.15, doesn’t match org.codehaus.groovy#groovy-xml;2.5.0
Sort dependencies of : dk.brics.automaton#automaton;1.11-8 / Number of dependencies = 0
Sort done for : dk.brics.automaton#automaton;1.11-8
Sort dependencies of : org.apache.commons#commons-text;1.1 / Number of dependencies = 3
Sort dependencies of : org.apache.commons#commons-lang3;3.5 / Number of dependencies = 4
Module descriptor is processed : junit#junit;4.12
Non matching revision detected when sorting. org.apache.commons#commons-lang3 depends on commons-io#commons-io;2.5, doesn’t match commons-io#commons-io;2.1
Sort done for : org.apache.commons#commons-lang3;3.5
Module descriptor is processed : junit#junit;4.12
Sort done for : org.apache.commons#commons-text;1.1
Module descriptor is processed : org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : org.springframework#spring-messaging;4.3.18.RELEASE
Module descriptor is processed : org.springframework.amqp#spring-rabbit;1.7.8.RELEASE
Module descriptor is processed : javax.inject#javax.inject;1
Module descriptor is processed : org.slf4j#slf4j-api;1.7.25
Sort dependencies of : com.github.tomakehurst#wiremock-standalone;2.16.0 / Number of dependencies = 0
Sort done for : com.github.tomakehurst#wiremock-standalone;2.16.0
Sort dependencies of : com.toomuchcoding.jsonassert#jsonassert;0.4.12 / Number of dependencies = 6
Module descriptor is processed : com.jayway.jsonpath#json-path;2.2.0
Module descriptor is processed : org.objenesis#objenesis;2.1
Non matching revision detected when sorting. com.toomuchcoding.jsonassert#jsonassert depends on ch.qos.logback#logback-classic;1.1.2, doesn’t match ch.qos.logback#logback-classic;1.1.11
Sort done for : com.toomuchcoding.jsonassert#jsonassert;0.4.12
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-contract-verifier depends on org.codehaus.groovy#groovy;2.4.15, doesn’t match org.codehaus.groovy#groovy;2.5.0
Module descriptor is processed : org.codehaus.groovy#groovy;2.4.15
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-contract-verifier depends on org.codehaus.groovy#groovy-nio;2.4.15, doesn’t match org.codehaus.groovy#groovy-nio;2.5.0
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-contract-verifier depends on org.codehaus.groovy#groovy-json;2.4.15, doesn’t match org.codehaus.groovy#groovy-json;2.5.0
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-contract-verifier depends on org.codehaus.groovy#groovy-xml;2.4.15, doesn’t match org.codehaus.groovy#groovy-xml;2.5.0
Module descriptor is processed : org.skyscreamer#jsonassert;1.4.0
Sort dependencies of : com.github.jknack#handlebars;4.0.6 / Number of dependencies = 12
Non matching revision detected when sorting. com.github.jknack#handlebars depends on org.apache.commons#commons-lang3;3.1, doesn’t match org.apache.commons#commons-lang3;3.5
Sort dependencies of : org.antlr#antlr4-runtime;4.5.1-1 / Number of dependencies = 0
Sort done for : org.antlr#antlr4-runtime;4.5.1-1
Sort dependencies of : org.mozilla#rhino;1.7R4 / Number of dependencies = 0
Sort done for : org.mozilla#rhino;1.7R4
Non matching revision detected when sorting. com.github.jknack#handlebars depends on org.slf4j#slf4j-api;1.6.4, doesn’t match org.slf4j#slf4j-api;1.7.25
Non matching revision detected when sorting. com.github.jknack#handlebars depends on ch.qos.logback#logback-classic;1.0.3, doesn’t match ch.qos.logback#logback-classic;1.1.11
Non matching revision detected when sorting. com.github.jknack#handlebars depends on junit#junit;4.11, doesn’t match junit#junit;4.12
Non matching revision detected when sorting. com.github.jknack#handlebars depends on org.yaml#snakeyaml;1.10, doesn’t match org.yaml#snakeyaml;1.17
Sort done for : com.github.jknack#handlebars;4.0.6
Sort dependencies of : commons-beanutils#commons-beanutils;1.9.3 / Number of dependencies = 4
Module descriptor is processed : commons-logging#commons-logging;1.2
Module descriptor is processed : commons-collections#commons-collections;3.2.2
Module descriptor is processed : junit#junit;4.12
Sort done for : commons-beanutils#commons-beanutils;1.9.3
Module descriptor is processed : org.yaml#snakeyaml;1.17
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE / Number of dependencies = 10
Sort done for : org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : com.sun.jersey#jersey-client;1.19.1
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE / Number of dependencies = 9
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE / Number of dependencies = 2
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE / Number of dependencies = 14
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Sort dependencies of : org.apache.curator#curator-framework;2.11.1 / Number of dependencies = 4
Sort dependencies of : org.apache.curator#curator-client;2.11.1 / Number of dependencies = 7
Sort dependencies of : org.apache.zookeeper#zookeeper;3.4.8 / Number of dependencies = 17
Non matching revision detected when sorting. org.apache.zookeeper#zookeeper depends on org.slf4j#slf4j-api;1.6.1, doesn’t match org.slf4j#slf4j-api;1.7.25
Sort dependencies of : jline#jline;0.9.94 / Number of dependencies = 1
Non matching revision detected when sorting. jline#jline depends on junit#junit;3.8.1, doesn’t match junit#junit;4.12
Sort done for : jline#jline;0.9.94
Non matching revision detected when sorting. org.apache.zookeeper#zookeeper depends on junit#junit;4.8.1, doesn’t match junit#junit;4.12
Module descriptor is processed : commons-collections#commons-collections;3.2.2
Non matching revision detected when sorting. org.apache.zookeeper#zookeeper depends on commons-lang#commons-lang;2.4, doesn’t match commons-lang#commons-lang;2.6
Module descriptor is processed : commons-collections#commons-collections;3.2.2
Sort done for : org.apache.zookeeper#zookeeper;3.4.8
Non matching revision detected when sorting. org.apache.curator#curator-client depends on com.google.guava#guava;16.0.1, doesn’t match com.google.guava#guava;18.0
Non matching revision detected when sorting. org.apache.curator#curator-client depends on org.slf4j#slf4j-api;1.7.6, doesn’t match org.slf4j#slf4j-api;1.7.25
Non matching revision detected when sorting. org.apache.curator#curator-client depends on org.mockito#mockito-core;1.9.5, doesn’t match org.mockito#mockito-core;1.10.19
Sort done for : org.apache.curator#curator-client;2.11.1
Sort done for : org.apache.curator#curator-framework;2.11.1
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Module descriptor is processed : org.objenesis#objenesis;2.1
Module descriptor is processed : org.hamcrest#hamcrest-core;1.3
Sort done for : org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE / Number of dependencies = 26
Module descriptor is processed : org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Module descriptor is processed : org.springframework#spring-web;4.3.18.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Sort dependencies of : org.apache.curator#curator-x-discovery;2.11.1 / Number of dependencies = 5
Sort dependencies of : org.apache.curator#curator-recipes;2.11.1 / Number of dependencies = 5
Module descriptor is processed : org.apache.curator#curator-framework;2.11.1
Non matching revision detected when sorting. org.apache.curator#curator-recipes depends on org.mockito#mockito-core;1.9.5, doesn’t match org.mockito#mockito-core;1.10.19
Sort done for : org.apache.curator#curator-recipes;2.11.1
Module descriptor is processed : org.codehaus.jackson#jackson-mapper-asl;1.9.13
Sort done for : org.apache.curator#curator-x-discovery;2.11.1
Module descriptor is processed : org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE
Module descriptor is processed : com.netflix.ribbon#ribbon;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-core;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-loadbalancer;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-httpclient;2.2.5
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Module descriptor is processed : org.objenesis#objenesis;2.1
Module descriptor is processed : org.hamcrest#hamcrest-core;1.3
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-zookeeper-discovery depends on org.assertj#assertj-core;2.4.0, doesn’t match org.assertj#assertj-core;2.6.0
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-zookeeper-discovery depends on com.toomuchcoding.jsonassert#jsonassert;0.4.1, doesn’t match com.toomuchcoding.jsonassert#jsonassert;0.4.12
Sort done for : org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE
Module descriptor is processed : org.apache.curator#curator-x-discovery;2.11.1
Module descriptor is processed : org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE
Module descriptor is processed : com.netflix.ribbon#ribbon;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-core;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-httpclient;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-loadbalancer;2.2.5
Sort done for : org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE / Number of dependencies = 8
Module descriptor is processed : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Sort dependencies of : org.cloudfoundry#cloudfoundry-client-lib;1.1.3 / Number of dependencies = 19
Non matching revision detected when sorting. org.cloudfoundry#cloudfoundry-client-lib depends on org.springframework#spring-webmvc;4.0.5.RELEASE, doesn’t match org.springframework#spring-webmvc;4.3.18.RELEASE
Non matching revision detected when sorting. org.cloudfoundry#cloudfoundry-client-lib depends on org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE, doesn’t match org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE
Non matching revision detected when sorting. org.cloudfoundry#cloudfoundry-client-lib depends on org.apache.httpcomponents#httpclient;4.3.6, doesn’t match org.apache.httpcomponents#httpclient;4.5.5
Sort dependencies of : commons-io#commons-io;2.1 / Number of dependencies = 1
Non matching revision detected when sorting. commons-io#commons-io depends on junit#junit;4.10, doesn’t match junit#junit;4.12
Sort done for : commons-io#commons-io;2.1
Sort dependencies of : com.esotericsoftware.yamlbeans#yamlbeans;1.06 / Number of dependencies = 1
Non matching revision detected when sorting. com.esotericsoftware.yamlbeans#yamlbeans depends on junit#junit;4.8.2, doesn’t match junit#junit;4.12
Sort done for : com.esotericsoftware.yamlbeans#yamlbeans;1.06
Non matching revision detected when sorting. org.cloudfoundry#cloudfoundry-client-lib depends on com.fasterxml.jackson.core#jackson-core;2.3.3, doesn’t match com.fasterxml.jackson.core#jackson-core;2.8.11
Non matching revision detected when sorting. org.cloudfoundry#cloudfoundry-client-lib depends on com.fasterxml.jackson.core#jackson-databind;2.3.3, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Non matching revision detected when sorting. org.cloudfoundry#cloudfoundry-client-lib depends on org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15, doesn’t match org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31
Sort dependencies of : org.apache.tomcat#tomcat-juli;8.0.15 / Number of dependencies = 0
Sort done for : org.apache.tomcat#tomcat-juli;8.0.15
Module descriptor is processed : com.google.protobuf#protobuf-java;2.6.1
Non matching revision detected when sorting. org.cloudfoundry#cloudfoundry-client-lib depends on junit#junit;4.10, doesn’t match junit#junit;4.12
Non matching revision detected when sorting. org.cloudfoundry#cloudfoundry-client-lib depends on org.mockito#mockito-core;1.9.5, doesn’t match org.mockito#mockito-core;1.10.19
Non matching revision detected when sorting. org.cloudfoundry#cloudfoundry-client-lib depends on org.springframework#spring-test;4.0.5.RELEASE, doesn’t match org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.cloudfoundry#cloudfoundry-client-lib;1.1.3
Module descriptor is processed : org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE / Number of dependencies = 3
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE
Sort dependencies of : org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE / Number of dependencies = 10
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE / Number of dependencies = 1
Module descriptor is processed : org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE / Number of dependencies = 1
Module descriptor is processed : org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE / Number of dependencies = 2
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-localconfig-connector depends on org.apache.commons#commons-lang3;3.3.2, doesn’t match org.apache.commons#commons-lang3;3.5
Module descriptor is processed : org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE / Number of dependencies = 3
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE / Number of dependencies = 31
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Module descriptor is processed : org.springframework.integration#spring-integration-core;4.3.17.RELEASE
Module descriptor is processed : org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : com.netflix.hystrix#hystrix-core;1.5.12
Module descriptor is processed : io.reactivex#rxjava;1.2.0
Module descriptor is processed : org.apache.httpcomponents#httpclient;4.5.5
Module descriptor is processed : org.aspectj#aspectjrt;1.8.13
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Module descriptor is processed : com.netflix.archaius#archaius-core;0.7.4
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-sleuth-core depends on org.assertj#assertj-core;3.8.0, doesn’t match org.assertj#assertj-core;2.6.0
Sort done for : org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE / Number of dependencies = 2
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE / Number of dependencies = 4
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE / Number of dependencies = 8
Module descriptor is processed : org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Module descriptor is processed : org.apache.curator#curator-recipes;2.11.1
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
Module descriptor is processed : org.apache.curator#curator-recipes;2.11.1
Sort done for : org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE / Number of dependencies = 4
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE / Number of dependencies = 4
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE / Number of dependencies = 10
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE / Number of dependencies = 12
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream depends on org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE, doesn’t match org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream depends on org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE, doesn’t match org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream depends on org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE, doesn’t match org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream depends on org.springframework#spring-messaging;4.3.16.RELEASE, doesn’t match org.springframework#spring-messaging;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream depends on org.springframework.integration#spring-integration-core;4.3.15.RELEASE, doesn’t match org.springframework.integration#spring-integration-core;4.3.17.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream depends on org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE, doesn’t match org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE
Sort dependencies of : org.springframework#spring-tuple;1.0.0.RELEASE / Number of dependencies = 7
Module descriptor is processed : com.esotericsoftware#kryo-shaded;3.0.3
Non matching revision detected when sorting. org.springframework#spring-tuple depends on org.springframework#spring-core;4.2.6.RELEASE, doesn’t match org.springframework#spring-core;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework#spring-tuple depends on com.fasterxml.jackson.core#jackson-databind;2.6.6, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Non matching revision detected when sorting. org.springframework#spring-tuple depends on org.springframework#spring-context;4.2.6.RELEASE, doesn’t match org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : org.hamcrest#hamcrest-core;1.3
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : junit#junit;4.12
Sort done for : org.springframework#spring-tuple;1.0.0.RELEASE
Sort dependencies of : org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE / Number of dependencies = 5
Module descriptor is processed : org.springframework#spring-tuple;1.0.0.RELEASE
Non matching revision detected when sorting. org.springframework.integration#spring-integration-tuple depends on org.springframework.integration#spring-integration-core;4.2.5.RELEASE, doesn’t match org.springframework.integration#spring-integration-core;4.3.17.RELEASE
Module descriptor is processed : org.hamcrest#hamcrest-core;1.3
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : junit#junit;4.12
Sort done for : org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE
Module descriptor is processed : org.springframework.retry#spring-retry;1.2.2.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream depends on org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE, doesn’t match org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE
Module descriptor is processed : com.ecwid.consul#consul-api;1.3.0
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE / Number of dependencies = 9
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE
Module descriptor is processed : org.springframework.integration#spring-integration-core;4.3.17.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE / Number of dependencies = 4
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE / Number of dependencies = 13
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Module descriptor is processed : org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE / Number of dependencies = 8
Sort dependencies of : org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE / Number of dependencies = 18
Sort dependencies of : org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE / Number of dependencies = 14
Module descriptor is processed : org.springframework#spring-beans;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-aop;4.3.18.RELEASE
Sort dependencies of : com.amazonaws#aws-java-sdk-core;1.11.125 / Number of dependencies = 15
Non matching revision detected when sorting. com.amazonaws#aws-java-sdk-core depends on commons-logging#commons-logging;1.1.3, doesn’t match commons-logging#commons-logging;1.2
Non matching revision detected when sorting. com.amazonaws#aws-java-sdk-core depends on org.apache.httpcomponents#httpclient;4.5.2, doesn’t match org.apache.httpcomponents#httpclient;4.5.5
Sort dependencies of : software.amazon.ion#ion-java;1.0.2 / Number of dependencies = 1
Module descriptor is processed : junit#junit;4.12
Sort done for : software.amazon.ion#ion-java;1.0.2
Non matching revision detected when sorting. com.amazonaws#aws-java-sdk-core depends on com.fasterxml.jackson.core#jackson-databind;2.6.6, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Non matching revision detected when sorting. com.amazonaws#aws-java-sdk-core depends on com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6, doesn’t match com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11
Non matching revision detected when sorting. com.amazonaws#aws-java-sdk-core depends on joda-time#joda-time;2.8.1, doesn’t match joda-time#joda-time;2.9.9
Non matching revision detected when sorting. com.amazonaws#aws-java-sdk-core depends on joda-time#joda-time;2.8.1, doesn’t match joda-time#joda-time;2.7
Module descriptor is processed : junit#junit;4.12
Non matching revision detected when sorting. com.amazonaws#aws-java-sdk-core depends on commons-io#commons-io;2.4, doesn’t match commons-io#commons-io;2.1
Sort done for : com.amazonaws#aws-java-sdk-core;1.11.125
Sort dependencies of : com.amazonaws#aws-java-sdk-s3;1.11.125 / Number of dependencies = 4
Sort dependencies of : com.amazonaws#aws-java-sdk-kms;1.11.125 / Number of dependencies = 3
Module descriptor is processed : com.amazonaws#aws-java-sdk-core;1.11.125
Sort dependencies of : com.amazonaws#jmespath-java;1.11.125 / Number of dependencies = 2
Non matching revision detected when sorting. com.amazonaws#jmespath-java depends on com.fasterxml.jackson.core#jackson-databind;2.6.6, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : junit#junit;4.12
Sort done for : com.amazonaws#jmespath-java;1.11.125
Sort done for : com.amazonaws#aws-java-sdk-kms;1.11.125
Module descriptor is processed : com.amazonaws#aws-java-sdk-core;1.11.125
Module descriptor is processed : com.amazonaws#jmespath-java;1.11.125
Sort done for : com.amazonaws#aws-java-sdk-s3;1.11.125
Sort dependencies of : com.amazonaws#aws-java-sdk-ec2;1.11.125 / Number of dependencies = 3
Module descriptor is processed : com.amazonaws#aws-java-sdk-core;1.11.125
Module descriptor is processed : com.amazonaws#jmespath-java;1.11.125
Sort done for : com.amazonaws#aws-java-sdk-ec2;1.11.125
Sort dependencies of : com.amazonaws#aws-java-sdk-cloudformation;1.11.125 / Number of dependencies = 3
Module descriptor is processed : com.amazonaws#aws-java-sdk-core;1.11.125
Module descriptor is processed : com.amazonaws#jmespath-java;1.11.125
Sort done for : com.amazonaws#aws-java-sdk-cloudformation;1.11.125
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-context-support;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Module descriptor is processed : org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE / Number of dependencies = 21
Module descriptor is processed : org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : org.springframework#spring-context-support;4.3.18.RELEASE
Module descriptor is processed : org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE
Module descriptor is processed : org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE / Number of dependencies = 10
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE / Number of dependencies = 23
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-netflix-eureka-client depends on org.springframework.cloud#spring-cloud-config-client;1.4.4.BUILD-SNAPSHOT, doesn’t match org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-netflix-eureka-client depends on org.springframework.cloud#spring-cloud-config-server;1.4.4.BUILD-SNAPSHOT, doesn’t match org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE
Sort dependencies of : com.netflix.eureka#eureka-client;1.7.2 / Number of dependencies = 22
Sort dependencies of : org.codehaus.jettison#jettison;1.3.7 / Number of dependencies = 3
Non matching revision detected when sorting. org.codehaus.jettison#jettison depends on junit#junit;3.8.1, doesn’t match junit#junit;4.12
Module descriptor is processed : stax#stax-api;1.0.1
Sort done for : org.codehaus.jettison#jettison;1.3.7
Sort dependencies of : com.netflix.netflix-commons#netflix-eventbus;0.3.0 / Number of dependencies = 5
Non matching revision detected when sorting. com.netflix.netflix-commons#netflix-eventbus depends on org.slf4j#slf4j-api;1.6.4, doesn’t match org.slf4j#slf4j-api;1.7.25
Sort dependencies of : com.netflix.netflix-commons#netflix-infix;0.3.0 / Number of dependencies = 8
Non matching revision detected when sorting. com.netflix.netflix-commons#netflix-infix depends on org.slf4j#slf4j-api;1.6.4, doesn’t match org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : commons-jxpath#commons-jxpath;1.3
Non matching revision detected when sorting. com.netflix.netflix-commons#netflix-infix depends on joda-time#joda-time;2.3, doesn’t match joda-time#joda-time;2.9.9
Non matching revision detected when sorting. com.netflix.netflix-commons#netflix-infix depends on joda-time#joda-time;2.3, doesn’t match joda-time#joda-time;2.7
Sort dependencies of : org.antlr#antlr-runtime;3.4 / Number of dependencies = 2
Sort dependencies of : org.antlr#stringtemplate;3.2.1 / Number of dependencies = 2
Non matching revision detected when sorting. org.antlr#stringtemplate depends on junit#junit;4.5, doesn’t match junit#junit;4.12
Sort dependencies of : antlr#antlr;2.7.7 / Number of dependencies = 0
Sort done for : antlr#antlr;2.7.7
Sort done for : org.antlr#stringtemplate;3.2.1
Module descriptor is processed : antlr#antlr;2.7.7
Sort done for : org.antlr#antlr-runtime;3.4
Module descriptor is processed : com.google.code.findbugs#jsr305;3.0.1
Non matching revision detected when sorting. com.netflix.netflix-commons#netflix-infix depends on com.google.guava#guava;14.0.1, doesn’t match com.google.guava#guava;18.0
Non matching revision detected when sorting. com.netflix.netflix-commons#netflix-infix depends on com.google.code.gson#gson;2.1, doesn’t match com.google.code.gson#gson;2.8.5
Non matching revision detected when sorting. com.netflix.netflix-commons#netflix-infix depends on com.google.code.gson#gson;2.1, doesn’t match com.google.code.gson#gson;2.3.1
Sort done for : com.netflix.netflix-commons#netflix-infix;0.3.0
Non matching revision detected when sorting. com.netflix.netflix-commons#netflix-eventbus depends on com.netflix.servo#servo-core;0.5.3, doesn’t match com.netflix.servo#servo-core;0.10.1
Non matching revision detected when sorting. com.netflix.netflix-commons#netflix-eventbus depends on com.netflix.archaius#archaius-core;0.3.3, doesn’t match com.netflix.archaius#archaius-core;0.7.4
Sort dependencies of : org.apache.commons#commons-math;2.2 / Number of dependencies = 1
Non matching revision detected when sorting. org.apache.commons#commons-math depends on junit#junit;4.4, doesn’t match junit#junit;4.12
Sort done for : org.apache.commons#commons-math;2.2
Sort done for : com.netflix.netflix-commons#netflix-eventbus;0.3.0
Non matching revision detected when sorting. com.netflix.eureka#eureka-client depends on com.thoughtworks.xstream#xstream;1.4.9, doesn’t match com.thoughtworks.xstream#xstream;1.4.10
Non matching revision detected when sorting. com.netflix.eureka#eureka-client depends on com.netflix.archaius#archaius-core;0.7.5, doesn’t match com.netflix.archaius#archaius-core;0.7.4
Module descriptor is processed : javax.ws.rs#jsr311-api;1.1.1
Module descriptor is processed : com.netflix.servo#servo-core;0.10.1
Sort dependencies of : com.sun.jersey#jersey-core;1.19.1 / Number of dependencies = 5
Module descriptor is processed : javax.ws.rs#jsr311-api;1.1.1
Non matching revision detected when sorting. com.sun.jersey#jersey-core depends on junit#junit;4.8.2, doesn’t match junit#junit;4.12
Sort done for : com.sun.jersey#jersey-core;1.19.1
Module descriptor is processed : com.sun.jersey#jersey-client;1.19.1
Module descriptor is processed : com.sun.jersey.contribs#jersey-apache-client4;1.19.1
Non matching revision detected when sorting. com.netflix.eureka#eureka-client depends on org.apache.httpcomponents#httpclient;4.3.4, doesn’t match org.apache.httpcomponents#httpclient;4.5.5
Sort dependencies of : com.google.inject#guice;4.1.0 / Number of dependencies = 11
Module descriptor is processed : javax.inject#javax.inject;1
Module descriptor is processed : aopalliance#aopalliance;1.0
Non matching revision detected when sorting. com.google.inject#guice depends on com.google.guava#guava;19.0, doesn’t match com.google.guava#guava;18.0
Module descriptor is processed : org.ow2.asm#asm;5.0.3
Non matching revision detected when sorting. com.google.inject#guice depends on org.springframework#spring-beans;3.0.5.RELEASE, doesn’t match org.springframework#spring-beans;4.3.18.RELEASE
Non matching revision detected when sorting. com.google.inject#guice depends on junit#junit;4.11, doesn’t match junit#junit;4.12
Sort done for : com.google.inject#guice;4.1.0
Non matching revision detected when sorting. com.netflix.eureka#eureka-client depends on com.fasterxml.jackson.core#jackson-annotations;2.8.7, doesn’t match com.fasterxml.jackson.core#jackson-annotations;2.8.0
Non matching revision detected when sorting. com.netflix.eureka#eureka-client depends on com.fasterxml.jackson.core#jackson-core;2.8.7, doesn’t match com.fasterxml.jackson.core#jackson-core;2.8.11
Non matching revision detected when sorting. com.netflix.eureka#eureka-client depends on com.fasterxml.jackson.core#jackson-databind;2.8.7, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Non matching revision detected when sorting. com.netflix.eureka#eureka-client depends on com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7, doesn’t match com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11
Sort dependencies of : org.codehaus.woodstox#woodstox-core-asl;4.4.1 / Number of dependencies = 2
Module descriptor is processed : javax.xml.stream#stax-api;1.0-2
Module descriptor is processed : org.codehaus.woodstox#stax2-api;3.1.4
Sort done for : org.codehaus.woodstox#woodstox-core-asl;4.4.1
Non matching revision detected when sorting. com.netflix.eureka#eureka-client depends on junit#junit;4.11, doesn’t match junit#junit;4.12
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Sort done for : com.netflix.eureka#eureka-client;1.7.2
Module descriptor is processed : javax.inject#javax.inject;1
Sort dependencies of : com.netflix.eureka#eureka-core;1.7.2 / Number of dependencies = 11
Module descriptor is processed : com.netflix.eureka#eureka-client;1.7.2
Non matching revision detected when sorting. com.netflix.eureka#eureka-core depends on com.amazonaws#aws-java-sdk-core;1.11.105, doesn’t match com.amazonaws#aws-java-sdk-core;1.11.125
Non matching revision detected when sorting. com.netflix.eureka#eureka-core depends on com.amazonaws#aws-java-sdk-ec2;1.11.105, doesn’t match com.amazonaws#aws-java-sdk-ec2;1.11.125
Non matching revision detected when sorting. com.netflix.eureka#eureka-core depends on com.thoughtworks.xstream#xstream;1.4.9, doesn’t match com.thoughtworks.xstream#xstream;1.4.10
Module descriptor is processed : javax.ws.rs#jsr311-api;1.1.1
Non matching revision detected when sorting. com.netflix.eureka#eureka-core depends on com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7, doesn’t match com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11
Module descriptor is processed : org.codehaus.woodstox#woodstox-core-asl;4.4.1
Sort done for : com.netflix.eureka#eureka-core;1.7.2
Module descriptor is processed : com.thoughtworks.xstream#xstream;1.4.10
Module descriptor is processed : com.sun.jersey.contribs#jersey-apache-client4;1.19.1
Module descriptor is processed : com.netflix.archaius#archaius-core;0.7.4
Module descriptor is processed : commons-configuration#commons-configuration;1.8
Module descriptor is processed : com.netflix.ribbon#ribbon;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-core;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-loadbalancer;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-eureka;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-httpclient;2.2.5
Module descriptor is processed : org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Module descriptor is processed : org.springframework.retry#spring-retry;1.2.2.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE
Module descriptor is processed : com.netflix.eureka#eureka-client;1.7.2
Module descriptor is processed : com.netflix.eureka#eureka-core;1.7.2
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE
Module descriptor is processed : com.netflix.ribbon#ribbon-eureka;2.2.5
Module descriptor is processed : com.thoughtworks.xstream#xstream;1.4.10
Sort done for : org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE / Number of dependencies = 5
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE / Number of dependencies = 22
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Sort dependencies of : org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE / Number of dependencies = 9
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.freemarker#freemarker;2.3.28
Module descriptor is processed : org.springframework#spring-context-support;4.3.18.RELEASE
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE
Module descriptor is processed : com.netflix.eureka#eureka-client;1.7.2
Sort dependencies of : com.sun.jersey#jersey-servlet;1.19.1 / Number of dependencies = 9
Non matching revision detected when sorting. com.sun.jersey#jersey-servlet depends on junit#junit;4.8.2, doesn’t match junit#junit;4.12
Sort done for : com.sun.jersey#jersey-servlet;1.19.1
Sort dependencies of : com.sun.jersey#jersey-server;1.19.1 / Number of dependencies = 6
Non matching revision detected when sorting. com.sun.jersey#jersey-server depends on junit#junit;4.8.2, doesn’t match junit#junit;4.12
Sort done for : com.sun.jersey#jersey-server;1.19.1
Module descriptor is processed : com.netflix.eureka#eureka-core;1.7.2
Module descriptor is processed : com.netflix.archaius#archaius-core;0.7.4
Module descriptor is processed : commons-configuration#commons-configuration;1.8
Module descriptor is processed : javax.inject#javax.inject;1
Module descriptor is processed : com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11
Module descriptor is processed : com.thoughtworks.xstream#xstream;1.4.10
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE
Module descriptor is processed : com.netflix.ribbon#ribbon-eureka;2.2.5
Sort done for : org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE / Number of dependencies = 4
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE
Module descriptor is processed : com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Sort done for : org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE / Number of dependencies = 2
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE / Number of dependencies = 1
Sort dependencies of : org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE / Number of dependencies = 12
Sort dependencies of : org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE / Number of dependencies = 3
Module descriptor is processed : org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream-binder-rabbit-core depends on org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE, doesn’t match org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream-binder-rabbit-core depends on org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE, doesn’t match org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE / Number of dependencies = 5
Module descriptor is processed : com.esotericsoftware#kryo-shaded;3.0.3
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream-codec depends on org.springframework.integration#spring-integration-core;4.3.15.RELEASE, doesn’t match org.springframework.integration#spring-integration-core;4.3.17.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream-codec depends on org.springframework.boot#spring-boot-starter-logging;1.5.12.RELEASE, doesn’t match org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream-codec depends on org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE, doesn’t match org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : com.fasterxml.jackson.core#jackson-annotations;2.8.0
Sort done for : org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream-binder-rabbit depends on org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE, doesn’t match org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream-binder-rabbit depends on org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE, doesn’t match org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream-binder-rabbit depends on org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE, doesn’t match org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream-binder-rabbit depends on org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE, doesn’t match org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream-binder-rabbit depends on org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE, doesn’t match org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE
Sort dependencies of : org.codehaus.groovy#groovy-xml;2.5.0 / Number of dependencies = 1
Sort dependencies of : org.codehaus.groovy#groovy;2.5.0 / Number of dependencies = 6
Module descriptor is processed : com.thoughtworks.xstream#xstream;1.4.10
Sort done for : org.codehaus.groovy#groovy;2.5.0
Sort done for : org.codehaus.groovy#groovy-xml;2.5.0
Sort dependencies of : org.codehaus.groovy#groovy-nio;2.5.0 / Number of dependencies = 1
Module descriptor is processed : org.codehaus.groovy#groovy;2.5.0
Sort done for : org.codehaus.groovy#groovy-nio;2.5.0
Sort dependencies of : org.codehaus.groovy#groovy-json;2.5.0 / Number of dependencies = 1
Module descriptor is processed : org.codehaus.groovy#groovy;2.5.0
Sort done for : org.codehaus.groovy#groovy-json;2.5.0
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE
Module descriptor is processed : org.hibernate#hibernate-validator;5.3.6.Final
Module descriptor is processed : com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : org.springframework#spring-web;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-webmvc;4.3.18.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-aop;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-beans;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-expression;4.3.18.RELEASE
Module descriptor is processed : ch.qos.logback#logback-classic;1.1.11
Module descriptor is processed : org.slf4j#jcl-over-slf4j;1.7.25
Module descriptor is processed : org.slf4j#jul-to-slf4j;1.7.25
Module descriptor is processed : org.slf4j#log4j-over-slf4j;1.7.25
Module descriptor is processed : ch.qos.logback#logback-core;1.1.11
Module descriptor is processed : org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : org.apache.tomcat.embed#tomcat-embed-core;8.5.31
Module descriptor is processed : org.apache.tomcat.embed#tomcat-embed-el;8.5.31
Module descriptor is processed : org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31
Module descriptor is processed : org.apache.tomcat#tomcat-annotations-api;8.5.31
Module descriptor is processed : javax.validation#validation-api;1.1.0.Final
Sort dependencies of : org.jboss.logging#jboss-logging;3.3.2.Final / Number of dependencies = 4
Non matching revision detected when sorting. org.jboss.logging#jboss-logging depends on org.slf4j#slf4j-api;1.7.2, doesn’t match org.slf4j#slf4j-api;1.7.25
Sort done for : org.jboss.logging#jboss-logging;3.3.2.Final
Sort dependencies of : com.fasterxml#classmate;1.3.4 / Number of dependencies = 1
Module descriptor is processed : junit#junit;4.12
Sort done for : com.fasterxml#classmate;1.3.4
Module descriptor is processed : com.fasterxml.jackson.core#jackson-annotations;2.8.0
Module descriptor is processed : com.fasterxml.jackson.core#jackson-core;2.8.11
Module descriptor is processed : org.yaml#snakeyaml;1.17
Module descriptor is processed : commons-logging#commons-logging;1.2
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
Module descriptor is processed : org.springframework.vault#spring-vault-core;1.1.2.RELEASE
Module descriptor is processed : org.springframework.security#spring-security-crypto;4.2.7.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : javax.inject#javax.inject;1
Module descriptor is processed : com.github.tomakehurst#wiremock-standalone;2.16.0
Module descriptor is processed : com.toomuchcoding.jsonassert#jsonassert;0.4.12
Module descriptor is processed : org.codehaus.groovy#groovy;2.4.15
Module descriptor is processed : org.skyscreamer#jsonassert;1.4.0
Module descriptor is processed : com.github.jknack#handlebars;4.0.6
Module descriptor is processed : commons-beanutils#commons-beanutils;1.9.3
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Module descriptor is processed : dk.brics.automaton#automaton;1.11-8
Module descriptor is processed : org.apache.commons#commons-text;1.1
Module descriptor is processed : org.apache.commons#commons-lang3;3.5
Module descriptor is processed : org.springframework.boot#spring-boot-test;1.5.14.RELEASE
Module descriptor is processed : com.jayway.jsonpath#json-path;2.2.0
Module descriptor is processed : net.minidev#json-smart;2.2.1
Module descriptor is processed : net.minidev#accessors-smart;1.1
Module descriptor is processed : org.ow2.asm#asm;5.0.3
Module descriptor is processed : com.vaadin.external.google#android-json;0.0.20131108.vaadin1
Module descriptor is processed : org.antlr#antlr4-runtime;4.5.1-1
Module descriptor is processed : org.mozilla#rhino;1.7R4
Module descriptor is processed : commons-collections#commons-collections;3.2.2
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-core;1.3
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Module descriptor is processed : org.objenesis#objenesis;2.1
Module descriptor is processed : org.cloudfoundry#cloudfoundry-client-lib;1.1.3
Module descriptor is processed : org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE
Module descriptor is processed : org.apache.httpcomponents#httpclient;4.5.5
Module descriptor is processed : commons-io#commons-io;2.1
Module descriptor is processed : com.esotericsoftware.yamlbeans#yamlbeans;1.06
Module descriptor is processed : org.apache.tomcat#tomcat-juli;8.0.15
Module descriptor is processed : com.google.protobuf#protobuf-java;2.6.1
Module descriptor is processed : org.springframework.security#spring-security-core;4.2.7.RELEASE
Module descriptor is processed : org.springframework.security#spring-security-config;4.2.7.RELEASE
Module descriptor is processed : org.springframework.security#spring-security-web;4.2.7.RELEASE
Module descriptor is processed : commons-codec#commons-codec;1.10
Module descriptor is processed : org.codehaus.jackson#jackson-mapper-asl;1.9.13
Module descriptor is processed : aopalliance#aopalliance;1.0
Module descriptor is processed : org.codehaus.jackson#jackson-core-asl;1.9.13
Module descriptor is processed : org.apache.httpcomponents#httpcore;4.4.9
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE
Module descriptor is processed : org.springframework.security#spring-security-rsa;1.0.3.RELEASE
Module descriptor is processed : org.bouncycastle#bcpkix-jdk15on;1.55
Module descriptor is processed : org.bouncycastle#bcprov-jdk15on;1.55
Module descriptor is processed : org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE
Module descriptor is processed : org.aspectj#aspectjweaver;1.8.13
Module descriptor is processed : org.aspectj#aspectjrt;1.8.13
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE
Module descriptor is processed : org.apache.curator#curator-recipes;2.11.1
Module descriptor is processed : org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE
Module descriptor is processed : org.apache.curator#curator-framework;2.11.1
Module descriptor is processed : org.apache.curator#curator-client;2.11.1
Module descriptor is processed : org.apache.zookeeper#zookeeper;3.4.8
Module descriptor is processed : com.google.guava#guava;18.0
Module descriptor is processed : jline#jline;0.9.94
Module descriptor is processed : org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE
Module descriptor is processed : org.apache.curator#curator-x-discovery;2.11.1
Module descriptor is processed : org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE
Module descriptor is processed : com.netflix.ribbon#ribbon;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-core;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-httpclient;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-loadbalancer;2.2.5
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE
Module descriptor is processed : com.netflix.archaius#archaius-core;0.7.4
Module descriptor is processed : commons-configuration#commons-configuration;1.8
Module descriptor is processed : commons-lang#commons-lang;2.6
Module descriptor is processed : com.google.code.findbugs#jsr305;3.0.1
Module descriptor is processed : com.netflix.ribbon#ribbon-transport;2.2.5
Module descriptor is processed : com.netflix.hystrix#hystrix-core;1.5.12
Module descriptor is processed : io.reactivex#rxjava;1.2.0
Module descriptor is processed : io.reactivex#rxnetty;0.4.9
Module descriptor is processed : com.google.code.findbugs#annotations;2.0.0
Module descriptor is processed : io.reactivex#rxnetty-contexts;0.4.9
Module descriptor is processed : io.reactivex#rxnetty-servo;0.4.9
Module descriptor is processed : com.netflix.netflix-commons#netflix-statistics;0.1.1
Module descriptor is processed : com.netflix.servo#servo-core;0.10.1
Module descriptor is processed : com.netflix.netflix-commons#netflix-commons-util;0.1.1
Module descriptor is processed : com.netflix.servo#servo-internal;0.10.1
Module descriptor is processed : io.netty#netty-codec-http;4.0.27.Final
Module descriptor is processed : io.netty#netty-transport-native-epoll;4.0.27.Final
Module descriptor is processed : io.netty#netty-codec;4.0.27.Final
Module descriptor is processed : io.netty#netty-handler;4.0.27.Final
Module descriptor is processed : io.netty#netty-transport;4.0.27.Final
Module descriptor is processed : io.netty#netty-buffer;4.0.27.Final
Module descriptor is processed : io.netty#netty-common;4.0.27.Final
Module descriptor is processed : org.hdrhistogram#HdrHistogram;2.1.9
Module descriptor is processed : com.sun.jersey#jersey-client;1.19.1
Module descriptor is processed : com.sun.jersey.contribs#jersey-apache-client4;1.19.1
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE
Module descriptor is processed : com.ecwid.consul#consul-api;1.3.0
Module descriptor is processed : com.google.code.gson#gson;2.3.1
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Sort dependencies of : org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE / Number of dependencies = 8
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Module descriptor is processed : org.apache.tomcat.embed#tomcat-embed-el;8.5.31
Module descriptor is processed : org.hibernate#hibernate-validator;5.3.6.Final
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE
Module descriptor is processed : org.springframework#spring-messaging;4.3.18.RELEASE
Module descriptor is processed : org.springframework.integration#spring-integration-core;4.3.17.RELEASE
Module descriptor is processed : org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE
Module descriptor is processed : org.springframework#spring-tuple;1.0.0.RELEASE
Module descriptor is processed : org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE
Module descriptor is processed : org.springframework.retry#spring-retry;1.2.2.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE
Module descriptor is processed : org.springframework#spring-tx;4.3.18.RELEASE
Module descriptor is processed : com.esotericsoftware#kryo-shaded;3.0.3
Module descriptor is processed : com.esotericsoftware#minlog;1.3.0
Module descriptor is processed : org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE
Module descriptor is processed : joda-time#joda-time;2.7
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE
Module descriptor is processed : com.amazonaws#aws-java-sdk-core;1.11.125
Module descriptor is processed : com.amazonaws#aws-java-sdk-s3;1.11.125
Module descriptor is processed : com.amazonaws#aws-java-sdk-ec2;1.11.125
Module descriptor is processed : com.amazonaws#aws-java-sdk-cloudformation;1.11.125
Module descriptor is processed : software.amazon.ion#ion-java;1.0.2
Sort dependencies of : com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 / Number of dependencies = 4
Non matching revision detected when sorting. com.fasterxml.jackson.dataformat#jackson-dataformat-cbor depends on com.fasterxml.jackson.core#jackson-databind;2.8.11, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : com.fasterxml.jackson.core#jackson-annotations;2.8.0
Module descriptor is processed : com.fasterxml.jackson.core#jackson-core;2.8.11
Module descriptor is processed : junit#junit;4.12
Sort done for : com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11
Module descriptor is processed : joda-time#joda-time;2.9.9
Module descriptor is processed : com.amazonaws#aws-java-sdk-kms;1.11.125
Module descriptor is processed : com.amazonaws#jmespath-java;1.11.125
Module descriptor is processed : org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE
Module descriptor is processed : com.netflix.eureka#eureka-client;1.7.2
Module descriptor is processed : com.netflix.eureka#eureka-core;1.7.2
Module descriptor is processed : com.netflix.ribbon#ribbon-eureka;2.2.5
Module descriptor is processed : com.thoughtworks.xstream#xstream;1.4.10
Module descriptor is processed : org.codehaus.jettison#jettison;1.3.7
Module descriptor is processed : com.netflix.netflix-commons#netflix-eventbus;0.3.0
Module descriptor is processed : javax.ws.rs#jsr311-api;1.1.1
Module descriptor is processed : com.sun.jersey#jersey-core;1.19.1
Module descriptor is processed : com.google.inject#guice;4.1.0
Module descriptor is processed : stax#stax-api;1.0.1
Module descriptor is processed : com.netflix.netflix-commons#netflix-infix;0.3.0
Module descriptor is processed : org.apache.commons#commons-math;2.2
Module descriptor is processed : commons-jxpath#commons-jxpath;1.3
Module descriptor is processed : org.antlr#antlr-runtime;3.4
Module descriptor is processed : com.google.code.gson#gson;2.8.5
Module descriptor is processed : org.antlr#stringtemplate;3.2.1
Module descriptor is processed : antlr#antlr;2.7.7
Module descriptor is processed : xmlpull#xmlpull;1.1.3.1
Module descriptor is processed : xpp3#xpp3_min;1.1.4c
Module descriptor is processed : org.codehaus.woodstox#woodstox-core-asl;4.4.1
Module descriptor is processed : javax.xml.stream#stax-api;1.0-2
Module descriptor is processed : org.codehaus.woodstox#stax2-api;3.1.4
Module descriptor is processed : org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE
Module descriptor is processed : com.sun.jersey#jersey-servlet;1.19.1
Module descriptor is processed : com.sun.jersey#jersey-server;1.19.1
Module descriptor is processed : com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11
Module descriptor is processed : org.freemarker#freemarker;2.3.28
Module descriptor is processed : org.springframework#spring-context-support;4.3.18.RELEASE
Module descriptor is processed : com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11
Module descriptor is processed : com.fasterxml.woodstox#woodstox-core;5.0.3
Module descriptor is processed : org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE
Module descriptor is processed : org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r
Sort dependencies of : com.jcraft#jsch;0.1.54 / Number of dependencies = 1
Sort done for : com.jcraft#jsch;0.1.54
Module descriptor is processed : com.googlecode.javaewah#JavaEWAH;0.7.9
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE
Sort dependencies of : org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE / Number of dependencies = 2
Module descriptor is processed : org.springframework.integration#spring-integration-core;4.3.17.RELEASE
Non matching revision detected when sorting. org.springframework.integration#spring-integration-amqp depends on org.springframework.amqp#spring-rabbit;1.6.11.RELEASE, doesn’t match org.springframework.amqp#spring-rabbit;1.7.8.RELEASE
Sort done for : org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE
Module descriptor is processed : org.springframework.amqp#spring-rabbit;1.7.8.RELEASE
Module descriptor is processed : org.springframework.amqp#spring-amqp;1.7.8.RELEASE
Module descriptor is processed : com.rabbitmq#http-client;1.1.1.RELEASE
Module descriptor is processed : com.rabbitmq#amqp-client;4.0.3
Module descriptor is processed : org.codehaus.groovy#groovy;2.5.0
jline#jline;0.9.94 in default: excluding jline#jline;0.9.94!jline.jar
storing dependency org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE in props
storing dependency org.codehaus.groovy#groovy-xml;2.5.0 in props
storing dependency org.codehaus.groovy#groovy-nio;2.5.0 in props
storing dependency org.codehaus.groovy#groovy-json;2.5.0 in props
resolved ivy file produced in cache
:: downloading artifacts ::
[NOT REQUIRED] org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE!spring-cloud-gateway-mvc.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE!spring-cloud-vault-config-rabbitmq.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE!spring-cloud-vault-config-consul.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE!spring-cloud-vault-config-databases.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE!spring-cloud-vault-config-aws.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE!spring-cloud-vault-config.jar(test-jar)
[NOT REQUIRED] org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE!spring-cloud-vault-config.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE!spring-cloud-contract-stub-runner.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE!spring-cloud-cloudfoundry-discovery.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE!spring-cloud-starter-cloudfoundry.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE!spring-cloud-starter-sleuth.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE!spring-cloud-starter-zookeeper-all.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE!spring-cloud-starter-consul-all.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE!spring-cloud-starter-security.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE!spring-cloud-starter-aws.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE!spring-cloud-starter-netflix-eureka-client.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE!spring-cloud-starter-netflix-eureka-server.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE!spring-cloud-config-server.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE!spring-cloud-starter-config.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE!spring-cloud-starter-bus-amqp.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE!spring-cloud-stream.jar
[NOT REQUIRED] org.codehaus.groovy#groovy-xml;2.5.0!groovy-xml.jar
[NOT REQUIRED] org.codehaus.groovy#groovy-nio;2.5.0!groovy-nio.jar
[NOT REQUIRED] org.codehaus.groovy#groovy-json;2.5.0!groovy-json.jar
[NOT REQUIRED] org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE!spring-boot-starter-web.jar
[NOT REQUIRED] org.springframework.boot#spring-boot-starter;1.5.14.RELEASE!spring-boot-starter.jar
[NOT REQUIRED] org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE!spring-boot-starter-tomcat.jar
[NOT REQUIRED] org.hibernate#hibernate-validator;5.3.6.Final!hibernate-validator.jar
[NOT REQUIRED] com.fasterxml.jackson.core#jackson-databind;2.8.11.2!jackson-databind.jar(bundle)
[NOT REQUIRED] org.springframework#spring-web;4.3.18.RELEASE!spring-web.jar
[NOT REQUIRED] org.springframework#spring-webmvc;4.3.18.RELEASE!spring-webmvc.jar
[NOT REQUIRED] org.springframework.boot#spring-boot;1.5.14.RELEASE!spring-boot.jar
[NOT REQUIRED] org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE!spring-boot-autoconfigure.jar
[NOT REQUIRED] org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE!spring-boot-starter-logging.jar
[NOT REQUIRED] org.springframework#spring-core;4.3.18.RELEASE!spring-core.jar
[NOT REQUIRED] org.springframework#spring-context;4.3.18.RELEASE!spring-context.jar
[NOT REQUIRED] org.springframework#spring-aop;4.3.18.RELEASE!spring-aop.jar
[NOT REQUIRED] org.springframework#spring-beans;4.3.18.RELEASE!spring-beans.jar
[NOT REQUIRED] org.springframework#spring-expression;4.3.18.RELEASE!spring-expression.jar
[NOT REQUIRED] ch.qos.logback#logback-classic;1.1.11!logback-classic.jar
[NOT REQUIRED] org.slf4j#jcl-over-slf4j;1.7.25!jcl-over-slf4j.jar
[NOT REQUIRED] org.slf4j#jul-to-slf4j;1.7.25!jul-to-slf4j.jar
[NOT REQUIRED] org.slf4j#log4j-over-slf4j;1.7.25!log4j-over-slf4j.jar
[NOT REQUIRED] ch.qos.logback#logback-core;1.1.11!logback-core.jar
[NOT REQUIRED] org.slf4j#slf4j-api;1.7.25!slf4j-api.jar
[NOT REQUIRED] org.apache.tomcat.embed#tomcat-embed-core;8.5.31!tomcat-embed-core.jar
[NOT REQUIRED] org.apache.tomcat.embed#tomcat-embed-el;8.5.31!tomcat-embed-el.jar
[NOT REQUIRED] org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31!tomcat-embed-websocket.jar
[NOT REQUIRED] org.apache.tomcat#tomcat-annotations-api;8.5.31!tomcat-annotations-api.jar
[NOT REQUIRED] javax.validation#validation-api;1.1.0.Final!validation-api.jar
[NOT REQUIRED] org.jboss.logging#jboss-logging;3.3.2.Final!jboss-logging.jar
[NOT REQUIRED] com.fasterxml#classmate;1.3.4!classmate.jar(bundle)
[NOT REQUIRED] com.fasterxml.jackson.core#jackson-annotations;2.8.0!jackson-annotations.jar(bundle)
[NOT REQUIRED] com.fasterxml.jackson.core#jackson-core;2.8.11!jackson-core.jar(bundle)
[NOT REQUIRED] org.yaml#snakeyaml;1.17!snakeyaml.jar(bundle)
[NOT REQUIRED] commons-logging#commons-logging;1.2!commons-logging.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE!spring-cloud-commons.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE!spring-cloud-context.jar
[NOT REQUIRED] org.springframework.vault#spring-vault-core;1.1.2.RELEASE!spring-vault-core.jar
[NOT REQUIRED] org.springframework.security#spring-security-crypto;4.2.7.RELEASE!spring-security-crypto.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE!spring-cloud-contract-verifier.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE!spring-cloud-contract-shade.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE!spring-cloud-contract-spec.jar
[NOT REQUIRED] junit#junit;4.12!junit.jar
[NOT REQUIRED] org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE!spring-boot-test-autoconfigure.jar
[NOT REQUIRED] javax.inject#javax.inject;1!javax.inject.jar
[NOT REQUIRED] com.github.tomakehurst#wiremock-standalone;2.16.0!wiremock-standalone.jar
[NOT REQUIRED] com.toomuchcoding.jsonassert#jsonassert;0.4.12!jsonassert.jar
[NOT REQUIRED] org.skyscreamer#jsonassert;1.4.0!jsonassert.jar
[NOT REQUIRED] com.github.jknack#handlebars;4.0.6!handlebars.jar
[NOT REQUIRED] commons-beanutils#commons-beanutils;1.9.3!commons-beanutils.jar
[NOT REQUIRED] org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE!spring-boot-starter-test.jar
[NOT REQUIRED] dk.brics.automaton#automaton;1.11-8!automaton.jar
[NOT REQUIRED] org.apache.commons#commons-text;1.1!commons-text.jar
[NOT REQUIRED] org.apache.commons#commons-lang3;3.5!commons-lang3.jar
[NOT REQUIRED] org.springframework.boot#spring-boot-test;1.5.14.RELEASE!spring-boot-test.jar
[NOT REQUIRED] com.jayway.jsonpath#json-path;2.2.0!json-path.jar
[NOT REQUIRED] net.minidev#json-smart;2.2.1!json-smart.jar(bundle)
[NOT REQUIRED] net.minidev#accessors-smart;1.1!accessors-smart.jar(bundle)
[NOT REQUIRED] org.ow2.asm#asm;5.0.3!asm.jar
[NOT REQUIRED] com.vaadin.external.google#android-json;0.0.20131108.vaadin1!android-json.jar
[NOT REQUIRED] org.antlr#antlr4-runtime;4.5.1-1!antlr4-runtime.jar
[NOT REQUIRED] org.mozilla#rhino;1.7R4!rhino.jar
[NOT REQUIRED] commons-collections#commons-collections;3.2.2!commons-collections.jar
[NOT REQUIRED] org.assertj#assertj-core;2.6.0!assertj-core.jar(bundle)
[NOT REQUIRED] org.mockito#mockito-core;1.10.19!mockito-core.jar
[NOT REQUIRED] org.hamcrest#hamcrest-core;1.3!hamcrest-core.jar
[NOT REQUIRED] org.hamcrest#hamcrest-library;1.3!hamcrest-library.jar
[NOT REQUIRED] org.springframework#spring-test;4.3.18.RELEASE!spring-test.jar
[NOT REQUIRED] org.objenesis#objenesis;2.1!objenesis.jar
[NOT REQUIRED] org.cloudfoundry#cloudfoundry-client-lib;1.1.3!cloudfoundry-client-lib.jar
[NOT REQUIRED] org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE!spring-security-oauth2.jar
[NOT REQUIRED] org.apache.httpcomponents#httpclient;4.5.5!httpclient.jar
[NOT REQUIRED] commons-io#commons-io;2.1!commons-io.jar
[NOT REQUIRED] com.esotericsoftware.yamlbeans#yamlbeans;1.06!yamlbeans.jar
[NOT REQUIRED] org.apache.tomcat#tomcat-juli;8.0.15!tomcat-juli.jar
[NOT REQUIRED] com.google.protobuf#protobuf-java;2.6.1!protobuf-java.jar(bundle)
[NOT REQUIRED] org.springframework.security#spring-security-core;4.2.7.RELEASE!spring-security-core.jar
[NOT REQUIRED] org.springframework.security#spring-security-config;4.2.7.RELEASE!spring-security-config.jar
[NOT REQUIRED] org.springframework.security#spring-security-web;4.2.7.RELEASE!spring-security-web.jar
[NOT REQUIRED] commons-codec#commons-codec;1.10!commons-codec.jar
[NOT REQUIRED] org.codehaus.jackson#jackson-mapper-asl;1.9.13!jackson-mapper-asl.jar
[NOT REQUIRED] aopalliance#aopalliance;1.0!aopalliance.jar
[NOT REQUIRED] org.codehaus.jackson#jackson-core-asl;1.9.13!jackson-core-asl.jar
[NOT REQUIRED] org.apache.httpcomponents#httpcore;4.4.9!httpcore.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE!spring-cloud-starter.jar
[NOT REQUIRED] org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE!spring-boot-starter-cloud-connectors.jar
[NOT REQUIRED] org.springframework.security#spring-security-rsa;1.0.3.RELEASE!spring-security-rsa.jar
[NOT REQUIRED] org.bouncycastle#bcpkix-jdk15on;1.55!bcpkix-jdk15on.jar
[NOT REQUIRED] org.bouncycastle#bcprov-jdk15on;1.55!bcprov-jdk15on.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE!spring-cloud-spring-service-connector.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE!spring-cloud-cloudfoundry-connector.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE!spring-cloud-heroku-connector.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE!spring-cloud-localconfig-connector.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE!spring-cloud-core.jar
[NOT REQUIRED] org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE!spring-boot-starter-aop.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE!spring-cloud-sleuth-core.jar
[NOT REQUIRED] org.aspectj#aspectjweaver;1.8.13!aspectjweaver.jar
[NOT REQUIRED] org.aspectj#aspectjrt;1.8.13!aspectjrt.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE!spring-cloud-starter-zookeeper-config.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE!spring-cloud-starter-zookeeper-discovery.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE!spring-cloud-starter-zookeeper.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE!spring-cloud-zookeeper-config.jar
[NOT REQUIRED] org.apache.curator#curator-recipes;2.11.1!curator-recipes.jar(bundle)
[NOT REQUIRED] org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE!spring-cloud-zookeeper-core.jar
[NOT REQUIRED] org.apache.curator#curator-framework;2.11.1!curator-framework.jar(bundle)
[NOT REQUIRED] org.apache.curator#curator-client;2.11.1!curator-client.jar(bundle)
[NOT REQUIRED] org.apache.zookeeper#zookeeper;3.4.8!zookeeper.jar
[NOT REQUIRED] com.google.guava#guava;18.0!guava.jar(bundle)
jline#jline;0.9.94 in default: excluding jline#jline;0.9.94!jline.jar
jline#jline;0.9.94 in default: excluding jline#jline;0.9.94!jline.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE!spring-cloud-zookeeper-discovery.jar
[NOT REQUIRED] org.apache.curator#curator-x-discovery;2.11.1!curator-x-discovery.jar(bundle)
[NOT REQUIRED] org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE!spring-cloud-netflix-core.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE!spring-cloud-starter-archaius.jar
[NOT REQUIRED] com.netflix.ribbon#ribbon;2.2.5!ribbon.jar
[NOT REQUIRED] com.netflix.ribbon#ribbon-core;2.2.5!ribbon-core.jar
[NOT REQUIRED] com.netflix.ribbon#ribbon-httpclient;2.2.5!ribbon-httpclient.jar
[NOT REQUIRED] com.netflix.ribbon#ribbon-loadbalancer;2.2.5!ribbon-loadbalancer.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE!spring-cloud-starter-netflix-archaius.jar
[NOT REQUIRED] com.netflix.archaius#archaius-core;0.7.4!archaius-core.jar
[NOT REQUIRED] commons-configuration#commons-configuration;1.8!commons-configuration.jar
[NOT REQUIRED] commons-lang#commons-lang;2.6!commons-lang.jar
[NOT REQUIRED] com.google.code.findbugs#jsr305;3.0.1!jsr305.jar
[NOT REQUIRED] com.netflix.ribbon#ribbon-transport;2.2.5!ribbon-transport.jar
[NOT REQUIRED] com.netflix.hystrix#hystrix-core;1.5.12!hystrix-core.jar
[NOT REQUIRED] io.reactivex#rxjava;1.2.0!rxjava.jar
[NOT REQUIRED] io.reactivex#rxnetty;0.4.9!rxnetty.jar
[NOT REQUIRED] com.google.code.findbugs#annotations;2.0.0!annotations.jar
[NOT REQUIRED] io.reactivex#rxnetty-contexts;0.4.9!rxnetty-contexts.jar
[NOT REQUIRED] io.reactivex#rxnetty-servo;0.4.9!rxnetty-servo.jar
[NOT REQUIRED] com.netflix.netflix-commons#netflix-statistics;0.1.1!netflix-statistics.jar
[NOT REQUIRED] com.netflix.servo#servo-core;0.10.1!servo-core.jar
[NOT REQUIRED] com.netflix.netflix-commons#netflix-commons-util;0.1.1!netflix-commons-util.jar
[NOT REQUIRED] com.netflix.servo#servo-internal;0.10.1!servo-internal.jar
[NOT REQUIRED] io.netty#netty-codec-http;4.0.27.Final!netty-codec-http.jar
[NOT REQUIRED] io.netty#netty-transport-native-epoll;4.0.27.Final!netty-transport-native-epoll.jar
[NOT REQUIRED] io.netty#netty-codec;4.0.27.Final!netty-codec.jar
[NOT REQUIRED] io.netty#netty-handler;4.0.27.Final!netty-handler.jar
[NOT REQUIRED] io.netty#netty-transport;4.0.27.Final!netty-transport.jar
[NOT REQUIRED] io.netty#netty-buffer;4.0.27.Final!netty-buffer.jar
[NOT REQUIRED] io.netty#netty-common;4.0.27.Final!netty-common.jar
[NOT REQUIRED] org.hdrhistogram#HdrHistogram;2.1.9!HdrHistogram.jar(bundle)
[NOT REQUIRED] com.sun.jersey#jersey-client;1.19.1!jersey-client.jar
[NOT REQUIRED] com.sun.jersey.contribs#jersey-apache-client4;1.19.1!jersey-apache-client4.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE!spring-cloud-starter-consul-bus.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE!spring-cloud-starter-consul-config.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE!spring-cloud-starter-consul-discovery.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE!spring-cloud-starter-consul.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE!spring-cloud-consul-binder.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE!spring-cloud-bus.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE!spring-cloud-consul-core.jar
[NOT REQUIRED] com.ecwid.consul#consul-api;1.3.0!consul-api.jar
[NOT REQUIRED] org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE!spring-boot-starter-actuator.jar
[NOT REQUIRED] org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE!spring-boot-starter-validation.jar
[NOT REQUIRED] org.springframework#spring-messaging;4.3.18.RELEASE!spring-messaging.jar
[NOT REQUIRED] org.springframework.integration#spring-integration-core;4.3.17.RELEASE!spring-integration-core.jar
[NOT REQUIRED] org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE!spring-integration-jmx.jar
[NOT REQUIRED] org.springframework#spring-tuple;1.0.0.RELEASE!spring-tuple.jar
[NOT REQUIRED] org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE!spring-integration-tuple.jar
[NOT REQUIRED] org.springframework.retry#spring-retry;1.2.2.RELEASE!spring-retry.jar
[NOT REQUIRED] org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE!spring-boot-actuator.jar
[NOT REQUIRED] org.springframework#spring-tx;4.3.18.RELEASE!spring-tx.jar
[NOT REQUIRED] com.esotericsoftware#kryo-shaded;3.0.3!kryo-shaded.jar(bundle)
[NOT REQUIRED] com.esotericsoftware#minlog;1.3.0!minlog.jar(bundle)
[NOT REQUIRED] org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE!spring-cloud-consul-config.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE!spring-cloud-consul-discovery.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE!spring-cloud-starter-ribbon.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE!spring-cloud-starter-netflix-ribbon.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE!spring-cloud-security.jar
[NOT REQUIRED] org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE!spring-boot-starter-security.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE!spring-cloud-aws-context.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE!spring-cloud-aws-autoconfigure.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE!spring-cloud-aws-core.jar
[NOT REQUIRED] com.amazonaws#aws-java-sdk-core;1.11.125!aws-java-sdk-core.jar
[NOT REQUIRED] com.amazonaws#aws-java-sdk-s3;1.11.125!aws-java-sdk-s3.jar
[NOT REQUIRED] com.amazonaws#aws-java-sdk-ec2;1.11.125!aws-java-sdk-ec2.jar
[NOT REQUIRED] com.amazonaws#aws-java-sdk-cloudformation;1.11.125!aws-java-sdk-cloudformation.jar
[NOT REQUIRED] software.amazon.ion#ion-java;1.0.2!ion-java.jar(bundle)
[NOT REQUIRED] com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11!jackson-dataformat-cbor.jar(bundle)
[NOT REQUIRED] joda-time#joda-time;2.9.9!joda-time.jar
[NOT REQUIRED] com.amazonaws#aws-java-sdk-kms;1.11.125!aws-java-sdk-kms.jar
[NOT REQUIRED] com.amazonaws#jmespath-java;1.11.125!jmespath-java.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE!spring-cloud-netflix-eureka-client.jar
[NOT REQUIRED] com.netflix.eureka#eureka-client;1.7.2!eureka-client.jar
[NOT REQUIRED] com.netflix.eureka#eureka-core;1.7.2!eureka-core.jar
[NOT REQUIRED] com.netflix.ribbon#ribbon-eureka;2.2.5!ribbon-eureka.jar
[NOT REQUIRED] com.thoughtworks.xstream#xstream;1.4.10!xstream.jar
[NOT REQUIRED] org.codehaus.jettison#jettison;1.3.7!jettison.jar(bundle)
[NOT REQUIRED] com.netflix.netflix-commons#netflix-eventbus;0.3.0!netflix-eventbus.jar
[NOT REQUIRED] javax.ws.rs#jsr311-api;1.1.1!jsr311-api.jar
[NOT REQUIRED] com.sun.jersey#jersey-core;1.19.1!jersey-core.jar
[NOT REQUIRED] com.google.inject#guice;4.1.0!guice.jar
[NOT REQUIRED] stax#stax-api;1.0.1!stax-api.jar
[NOT REQUIRED] com.netflix.netflix-commons#netflix-infix;0.3.0!netflix-infix.jar
[NOT REQUIRED] org.apache.commons#commons-math;2.2!commons-math.jar
[NOT REQUIRED] commons-jxpath#commons-jxpath;1.3!commons-jxpath.jar
[NOT REQUIRED] org.antlr#antlr-runtime;3.4!antlr-runtime.jar
[NOT REQUIRED] com.google.code.gson#gson;2.8.5!gson.jar
[NOT REQUIRED] org.antlr#stringtemplate;3.2.1!stringtemplate.jar
[NOT REQUIRED] antlr#antlr;2.7.7!antlr.jar
[NOT REQUIRED] xmlpull#xmlpull;1.1.3.1!xmlpull.jar
[NOT REQUIRED] xpp3#xpp3_min;1.1.4c!xpp3_min.jar
[NOT REQUIRED] org.codehaus.woodstox#woodstox-core-asl;4.4.1!woodstox-core-asl.jar
[NOT REQUIRED] javax.xml.stream#stax-api;1.0-2!stax-api.jar
[NOT REQUIRED] org.codehaus.woodstox#stax2-api;3.1.4!stax2-api.jar(bundle)
[NOT REQUIRED] org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE!spring-cloud-netflix-eureka-server.jar
[NOT REQUIRED] org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE!spring-boot-starter-freemarker.jar
[NOT REQUIRED] com.sun.jersey#jersey-servlet;1.19.1!jersey-servlet.jar
[NOT REQUIRED] com.sun.jersey#jersey-server;1.19.1!jersey-server.jar
[NOT REQUIRED] com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11!jackson-dataformat-xml.jar(bundle)
[NOT REQUIRED] org.freemarker#freemarker;2.3.28!freemarker.jar
[NOT REQUIRED] org.springframework#spring-context-support;4.3.18.RELEASE!spring-context-support.jar
[NOT REQUIRED] com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11!jackson-module-jaxb-annotations.jar(bundle)
[NOT REQUIRED] com.fasterxml.woodstox#woodstox-core;5.0.3!woodstox-core.jar(bundle)
[NOT REQUIRED] org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE!spring-cloud-config-client.jar
[NOT REQUIRED] org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r!org.eclipse.jgit.jar
[NOT REQUIRED] com.jcraft#jsch;0.1.54!jsch.jar
[NOT REQUIRED] com.googlecode.javaewah#JavaEWAH;0.7.9!JavaEWAH.jar(bundle)
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE!spring-cloud-starter-stream-rabbit.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE!spring-cloud-stream-binder-rabbit.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE!spring-cloud-stream-binder-rabbit-core.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE!spring-cloud-stream-codec.jar
[NOT REQUIRED] org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE!spring-boot-starter-amqp.jar
[NOT REQUIRED] org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE!spring-integration-amqp.jar
[NOT REQUIRED] org.springframework.amqp#spring-rabbit;1.7.8.RELEASE!spring-rabbit.jar
[NOT REQUIRED] org.springframework.amqp#spring-amqp;1.7.8.RELEASE!spring-amqp.jar
[NOT REQUIRED] com.rabbitmq#http-client;1.1.1.RELEASE!http-client.jar
[NOT REQUIRED] com.rabbitmq#amqp-client;4.0.3!amqp-client.jar
[NOT REQUIRED] org.codehaus.groovy#groovy;2.5.0!groovy.jar
resolve done (1908ms resolve - 80ms download)
:: resolving dependencies :: caller#all-caller;working20
confs: [default]
validate = false
refresh = false
resolving dependencies for configuration 'default'
== resolving dependencies for caller#all-caller;working20 [default]
loadData of caller#all-caller;working20 of rootConf=default
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway-mvc/ivy-1.0.2.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-gateway-mvc/ivy-1.0.2.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE
found org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE in jcenter
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-web/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-web/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
found org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.boot#spring-boot-starter;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
found org.springframework.boot#spring-boot-starter;1.5.14.RELEASE in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.boot#spring-boot;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot;1.5.14.RELEASE
found org.springframework.boot#spring-boot;1.5.14.RELEASE in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework#spring-core;4.3.18.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-core/ivy-4.3.18.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework#spring-core;4.3.18.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-core/ivy-4.3.18.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework#spring-core;4.3.18.RELEASE
found org.springframework#spring-core;4.3.18.RELEASE in localm2
dependency descriptor has been mediated: dependency: net.sf.jopt-simple#jopt-simple;5.0.3 {optional=[compile(), master()]} ⇒ dependency: net.sf.jopt-simple#jopt-simple;4.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
== resolving dependencies org.springframework.boot#spring-boot;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
excluding dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: net.sf.jopt-simple#jopt-simple;5.0.3 {optional=[compile(), master()]} ⇒ dependency: net.sf.jopt-simple#jopt-simple;4.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
== resolving dependencies org.springframework.boot#spring-boot;1.5.14.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework#spring-context;4.3.18.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-context/ivy-4.3.18.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework#spring-context;4.3.18.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-context/ivy-4.3.18.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework#spring-context;4.3.18.RELEASE
found org.springframework#spring-context;4.3.18.RELEASE in localm2
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
== resolving dependencies org.springframework.boot#spring-boot;1.5.14.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework#spring-aop;4.3.18.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-aop/ivy-4.3.18.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework#spring-aop;4.3.18.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-aop/ivy-4.3.18.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework#spring-aop;4.3.18.RELEASE
found org.springframework#spring-aop;4.3.18.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.apache.commons#commons-pool2;2.4.2 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-pool2;2.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.apache.commons#commons-pool2;2.4.2 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-pool2;2.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
== resolving dependencies org.springframework#spring-aop;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.apache.commons#commons-pool2;2.4.2 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-pool2;2.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-pool2;2.4.2 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-pool2;2.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-pool2;2.4.2 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-pool2;2.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-pool2;2.4.2 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-pool2;2.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework#spring-beans;4.3.18.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-beans/ivy-4.3.18.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework#spring-beans;4.3.18.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-beans/ivy-4.3.18.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework#spring-beans;4.3.18.RELEASE
found org.springframework#spring-beans;4.3.18.RELEASE in localm2
== resolving dependencies org.springframework#spring-aop;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework#spring-beans;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.apache.commons#commons-pool2;2.4.2 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-pool2;2.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-pool2;2.4.2 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-pool2;2.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-pool2;2.4.2 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-pool2;2.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-pool2;2.4.2 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-pool2;2.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-beans;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-aop;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-aop;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework#spring-expression;4.3.18.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-expression/ivy-4.3.18.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework#spring-expression;4.3.18.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-expression/ivy-4.3.18.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework#spring-expression;4.3.18.RELEASE
found org.springframework#spring-expression;4.3.18.RELEASE in localm2
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework#spring-expression;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-expression;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-autoconfigure/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-autoconfigure/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
found org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-logging/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-logging/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE
found org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→ch.qos.logback#logback-classic;1.1.11 [compile→master()]
loadData of ch.qos.logback#logback-classic;1.1.11 of rootConf=default
using downloadGrapes to resolve ch.qos.logback#logback-classic;1.1.11
downloadGrapes: Checking cache for: dependency: ch.qos.logback#logback-classic;1.1.11 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/ch.qos.logback/logback-classic/ivy-1.1.11.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for ch.qos.logback#logback-classic;1.1.11 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/ch.qos.logback/logback-classic/ivy-1.1.11.xml
downloadGrapes: module revision found in cache: ch.qos.logback#logback-classic;1.1.11
found ch.qos.logback#logback-classic;1.1.11 in localm2
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#log4j-over-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#log4j-over-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#jul-to-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#jul-to-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.h2database#h2;1.2.132 {test=[runtime(), master()]} ⇒ dependency: com.h2database#h2;1.4.197 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.9 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.0 {optional=[compile(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;1.7.1 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→ch.qos.logback#logback-classic;1.1.11 [compile→compile()]
loadData of ch.qos.logback#logback-classic;1.1.11 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#log4j-over-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#log4j-over-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#jul-to-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#jul-to-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.h2database#h2;1.2.132 {test=[runtime(), master()]} ⇒ dependency: com.h2database#h2;1.4.197 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.9 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.0 {optional=[compile(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;1.7.1 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
== resolving dependencies ch.qos.logback#logback-classic;1.1.11→ch.qos.logback#logback-core;1.1.11 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#log4j-over-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#log4j-over-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#jul-to-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#jul-to-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.h2database#h2;1.2.132 {test=[runtime(), master()]} ⇒ dependency: com.h2database#h2;1.4.197 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.9 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.0 {optional=[compile(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;1.7.1 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#log4j-over-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#log4j-over-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#jul-to-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#jul-to-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.h2database#h2;1.2.132 {test=[runtime(), master()]} ⇒ dependency: com.h2database#h2;1.4.197 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.9 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.0 {optional=[compile(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;1.7.1 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#log4j-over-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#log4j-over-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#jul-to-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#jul-to-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.h2database#h2;1.2.132 {test=[runtime(), master()]} ⇒ dependency: com.h2database#h2;1.4.197 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.9 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.0 {optional=[compile(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;1.7.1 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#log4j-over-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#log4j-over-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#jul-to-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#jul-to-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.h2database#h2;1.2.132 {test=[runtime(), master()]} ⇒ dependency: com.h2database#h2;1.4.197 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.9 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.0 {optional=[compile(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;1.7.1 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
loadData of ch.qos.logback#logback-core;1.1.11 of rootConf=default
using downloadGrapes to resolve ch.qos.logback#logback-core;1.1.11
downloadGrapes: Checking cache for: dependency: ch.qos.logback#logback-core;1.1.11 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/ch.qos.logback/logback-core/ivy-1.1.11.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for ch.qos.logback#logback-core;1.1.11 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/ch.qos.logback/logback-core/ivy-1.1.11.xml
downloadGrapes: module revision found in cache: ch.qos.logback#logback-core;1.1.11
found ch.qos.logback#logback-core;1.1.11 in localm2
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.2 {test=[runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;1.7.1 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
== resolving dependencies ch.qos.logback#logback-classic;1.1.11→ch.qos.logback#logback-core;1.1.11 [compile→compile()]
loadData of ch.qos.logback#logback-core;1.1.11 of rootConf=default
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.2 {test=[runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;1.7.1 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
== resolving dependencies ch.qos.logback#logback-classic;1.1.11→org.slf4j#slf4j-api;1.7.25 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#log4j-over-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#log4j-over-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#jul-to-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#jul-to-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.h2database#h2;1.2.132 {test=[runtime(), master()]} ⇒ dependency: com.h2database#h2;1.4.197 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.9 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.0 {optional=[compile(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;1.7.1 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#log4j-over-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#log4j-over-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#jul-to-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#jul-to-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.h2database#h2;1.2.132 {test=[runtime(), master()]} ⇒ dependency: com.h2database#h2;1.4.197 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.9 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.0 {optional=[compile(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;1.7.1 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#log4j-over-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#log4j-over-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#jul-to-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#jul-to-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.h2database#h2;1.2.132 {test=[runtime(), master()]} ⇒ dependency: com.h2database#h2;1.4.197 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.9 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.0 {optional=[compile(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;1.7.1 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#log4j-over-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#log4j-over-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#jul-to-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#jul-to-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.h2database#h2;1.2.132 {test=[runtime(), master()]} ⇒ dependency: com.h2database#h2;1.4.197 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.9 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.0 {optional=[compile(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;1.7.1 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
using downloadGrapes to resolve org.slf4j#slf4j-api;1.7.25
downloadGrapes: Checking cache for: dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.slf4j/slf4j-api/ivy-1.7.25.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.slf4j#slf4j-api;1.7.25 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.slf4j/slf4j-api/ivy-1.7.25.xml
downloadGrapes: module revision found in cache: org.slf4j#slf4j-api;1.7.25
found org.slf4j#slf4j-api;1.7.25 in localm2
== resolving dependencies ch.qos.logback#logback-classic;1.1.11→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→org.slf4j#jcl-over-slf4j;1.7.25 [compile→master()]
loadData of org.slf4j#jcl-over-slf4j;1.7.25 of rootConf=default
using downloadGrapes to resolve org.slf4j#jcl-over-slf4j;1.7.25
downloadGrapes: Checking cache for: dependency: org.slf4j#jcl-over-slf4j;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.slf4j/jcl-over-slf4j/ivy-1.7.25.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.slf4j#jcl-over-slf4j;1.7.25 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.slf4j/jcl-over-slf4j/ivy-1.7.25.xml
downloadGrapes: module revision found in cache: org.slf4j#jcl-over-slf4j;1.7.25
found org.slf4j#jcl-over-slf4j;1.7.25 in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→org.slf4j#jcl-over-slf4j;1.7.25 [compile→compile()]
loadData of org.slf4j#jcl-over-slf4j;1.7.25 of rootConf=default
== resolving dependencies org.slf4j#jcl-over-slf4j;1.7.25→org.slf4j#slf4j-api;1.7.25 [compile→master()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.slf4j#jcl-over-slf4j;1.7.25→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→org.slf4j#jul-to-slf4j;1.7.25 [compile→master()]
loadData of org.slf4j#jul-to-slf4j;1.7.25 of rootConf=default
using downloadGrapes to resolve org.slf4j#jul-to-slf4j;1.7.25
downloadGrapes: Checking cache for: dependency: org.slf4j#jul-to-slf4j;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.slf4j/jul-to-slf4j/ivy-1.7.25.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.slf4j#jul-to-slf4j;1.7.25 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.slf4j/jul-to-slf4j/ivy-1.7.25.xml
downloadGrapes: module revision found in cache: org.slf4j#jul-to-slf4j;1.7.25
found org.slf4j#jul-to-slf4j;1.7.25 in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→org.slf4j#jul-to-slf4j;1.7.25 [compile→compile()]
loadData of org.slf4j#jul-to-slf4j;1.7.25 of rootConf=default
== resolving dependencies org.slf4j#jul-to-slf4j;1.7.25→org.slf4j#slf4j-api;1.7.25 [compile→master()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.slf4j#jul-to-slf4j;1.7.25→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→org.slf4j#log4j-over-slf4j;1.7.25 [compile→master()]
loadData of org.slf4j#log4j-over-slf4j;1.7.25 of rootConf=default
using downloadGrapes to resolve org.slf4j#log4j-over-slf4j;1.7.25
downloadGrapes: Checking cache for: dependency: org.slf4j#log4j-over-slf4j;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.slf4j/log4j-over-slf4j/ivy-1.7.25.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.slf4j#log4j-over-slf4j;1.7.25 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.slf4j/log4j-over-slf4j/ivy-1.7.25.xml
downloadGrapes: module revision found in cache: org.slf4j#log4j-over-slf4j;1.7.25
found org.slf4j#log4j-over-slf4j;1.7.25 in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→org.slf4j#log4j-over-slf4j;1.7.25 [compile→compile()]
loadData of org.slf4j#log4j-over-slf4j;1.7.25 of rootConf=default
== resolving dependencies org.slf4j#log4j-over-slf4j;1.7.25→org.slf4j#slf4j-api;1.7.25 [compile→master()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.slf4j#log4j-over-slf4j;1.7.25→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-tomcat/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-tomcat/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE
found org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-core;8.5.31 [compile→master()]
loadData of org.apache.tomcat.embed#tomcat-embed-core;8.5.31 of rootConf=default
using downloadGrapes to resolve org.apache.tomcat.embed#tomcat-embed-core;8.5.31
downloadGrapes: Checking cache for: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.tomcat.embed/tomcat-embed-core/ivy-8.5.31.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.apache.tomcat.embed#tomcat-embed-core;8.5.31 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.tomcat.embed/tomcat-embed-core/ivy-8.5.31.xml
downloadGrapes: module revision found in cache: org.apache.tomcat.embed#tomcat-embed-core;8.5.31
found org.apache.tomcat.embed#tomcat-embed-core;8.5.31 in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-core;8.5.31 [compile→compile()]
loadData of org.apache.tomcat.embed#tomcat-embed-core;8.5.31 of rootConf=default
== resolving dependencies org.apache.tomcat.embed#tomcat-embed-core;8.5.31→org.apache.tomcat#tomcat-annotations-api;8.5.31 [compile→master()]
loadData of org.apache.tomcat#tomcat-annotations-api;8.5.31 of rootConf=default
using downloadGrapes to resolve org.apache.tomcat#tomcat-annotations-api;8.5.31
downloadGrapes: Checking cache for: dependency: org.apache.tomcat#tomcat-annotations-api;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.tomcat/tomcat-annotations-api/ivy-8.5.31.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.apache.tomcat#tomcat-annotations-api;8.5.31 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.tomcat/tomcat-annotations-api/ivy-8.5.31.xml
downloadGrapes: module revision found in cache: org.apache.tomcat#tomcat-annotations-api;8.5.31
found org.apache.tomcat#tomcat-annotations-api;8.5.31 in localm2
== resolving dependencies org.apache.tomcat.embed#tomcat-embed-core;8.5.31→org.apache.tomcat#tomcat-annotations-api;8.5.31 [compile→compile()]
loadData of org.apache.tomcat#tomcat-annotations-api;8.5.31 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-el;8.5.31 [compile→master()]
loadData of org.apache.tomcat.embed#tomcat-embed-el;8.5.31 of rootConf=default
using downloadGrapes to resolve org.apache.tomcat.embed#tomcat-embed-el;8.5.31
downloadGrapes: Checking cache for: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.tomcat.embed/tomcat-embed-el/ivy-8.5.31.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.apache.tomcat.embed#tomcat-embed-el;8.5.31 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.tomcat.embed/tomcat-embed-el/ivy-8.5.31.xml
downloadGrapes: module revision found in cache: org.apache.tomcat.embed#tomcat-embed-el;8.5.31
found org.apache.tomcat.embed#tomcat-embed-el;8.5.31 in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-el;8.5.31 [compile→compile()]
loadData of org.apache.tomcat.embed#tomcat-embed-el;8.5.31 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 [compile→master()]
loadData of org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 of rootConf=default
using downloadGrapes to resolve org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31
downloadGrapes: Checking cache for: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.tomcat.embed/tomcat-embed-websocket/ivy-8.5.31.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.tomcat.embed/tomcat-embed-websocket/ivy-8.5.31.xml
downloadGrapes: module revision found in cache: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31
found org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 [compile→compile()]
loadData of org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 of rootConf=default
== resolving dependencies org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31→org.apache.tomcat.embed#tomcat-embed-core;8.5.31 [compile→master()]
loadData of org.apache.tomcat.embed#tomcat-embed-core;8.5.31 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31→org.apache.tomcat.embed#tomcat-embed-core;8.5.31 [compile→compile()]
loadData of org.apache.tomcat.embed#tomcat-embed-core;8.5.31 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.hibernate#hibernate-validator;5.3.6.Final [compile→master()]
loadData of org.hibernate#hibernate-validator;5.3.6.Final of rootConf=default
using downloadGrapes to resolve org.hibernate#hibernate-validator;5.3.6.Final
downloadGrapes: Checking cache for: dependency: org.hibernate#hibernate-validator;5.3.6.Final {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.hibernate/hibernate-validator/ivy-5.3.6.Final.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.hibernate#hibernate-validator;5.3.6.Final (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.hibernate/hibernate-validator/ivy-5.3.6.Final.xml
downloadGrapes: module revision found in cache: org.hibernate#hibernate-validator;5.3.6.Final
found org.hibernate#hibernate-validator;5.3.6.Final in localm2
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.hibernate#hibernate-validator;5.3.6.Final [compile→compile()]
loadData of org.hibernate#hibernate-validator;5.3.6.Final of rootConf=default
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
== resolving dependencies org.hibernate#hibernate-validator;5.3.6.Final→javax.validation#validation-api;1.1.0.Final [compile→master()]
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
loadData of javax.validation#validation-api;1.1.0.Final of rootConf=default
using downloadGrapes to resolve javax.validation#validation-api;1.1.0.Final
downloadGrapes: Checking cache for: dependency: javax.validation#validation-api;1.1.0.Final {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/javax.validation/validation-api/ivy-1.1.0.Final.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for javax.validation#validation-api;1.1.0.Final (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/javax.validation/validation-api/ivy-1.1.0.Final.xml
downloadGrapes: module revision found in cache: javax.validation#validation-api;1.1.0.Final
found javax.validation#validation-api;1.1.0.Final in localm2
== resolving dependencies org.hibernate#hibernate-validator;5.3.6.Final→javax.validation#validation-api;1.1.0.Final [compile→compile()]
loadData of javax.validation#validation-api;1.1.0.Final of rootConf=default
== resolving dependencies org.hibernate#hibernate-validator;5.3.6.Final→org.jboss.logging#jboss-logging;3.3.2.Final [compile→master()]
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
loadData of org.jboss.logging#jboss-logging;3.3.2.Final of rootConf=default
using downloadGrapes to resolve org.jboss.logging#jboss-logging;3.3.2.Final
downloadGrapes: Checking cache for: dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.jboss.logging/jboss-logging/ivy-3.3.2.Final.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.jboss.logging#jboss-logging;3.3.2.Final (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.jboss.logging/jboss-logging/ivy-3.3.2.Final.xml
downloadGrapes: module revision found in cache: org.jboss.logging#jboss-logging;3.3.2.Final
found org.jboss.logging#jboss-logging;3.3.2.Final in localm2
dependency descriptor has been mediated: dependency: log4j#log4j;1.2.16 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: log4j#log4j;1.2.17 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.logging.log4j#log4j-api;2.0 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.apache.logging.log4j#log4j-api;2.7 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.2 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {provided=[compile(), provided(), runtime(), master()]}
== resolving dependencies org.hibernate#hibernate-validator;5.3.6.Final→org.jboss.logging#jboss-logging;3.3.2.Final [compile→compile()]
loadData of org.jboss.logging#jboss-logging;3.3.2.Final of rootConf=default
dependency descriptor has been mediated: dependency: log4j#log4j;1.2.16 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: log4j#log4j;1.2.17 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.logging.log4j#log4j-api;2.0 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.apache.logging.log4j#log4j-api;2.7 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.2 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {provided=[compile(), provided(), runtime(), master()]}
== resolving dependencies org.hibernate#hibernate-validator;5.3.6.Final→com.fasterxml#classmate;1.3.4 [compile→master()]
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
loadData of com.fasterxml#classmate;1.3.4 of rootConf=default
using downloadGrapes to resolve com.fasterxml#classmate;1.3.4
downloadGrapes: Checking cache for: dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.fasterxml/classmate/ivy-1.3.4.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.fasterxml#classmate;1.3.4 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.fasterxml/classmate/ivy-1.3.4.xml
downloadGrapes: module revision found in cache: com.fasterxml#classmate;1.3.4
found com.fasterxml#classmate;1.3.4 in localm2
== resolving dependencies org.hibernate#hibernate-validator;5.3.6.Final→com.fasterxml#classmate;1.3.4 [compile→compile()]
loadData of com.fasterxml#classmate;1.3.4 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→master()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
using downloadGrapes to resolve com.fasterxml.jackson.core#jackson-databind;2.8.11.2
downloadGrapes: Checking cache for: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-databind/ivy-2.8.11.2.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.fasterxml.jackson.core#jackson-databind;2.8.11.2 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-databind/ivy-2.8.11.2.xml
downloadGrapes: module revision found in cache: com.fasterxml.jackson.core#jackson-databind;2.8.11.2
found com.fasterxml.jackson.core#jackson-databind;2.8.11.2 in localm2
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.10 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.10 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.fasterxml.jackson.core#jackson-databind;2.8.11.2→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.10 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.10 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.10 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.10 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
using downloadGrapes to resolve com.fasterxml.jackson.core#jackson-annotations;2.8.0
downloadGrapes: Checking cache for: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-annotations/ivy-2.8.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.fasterxml.jackson.core#jackson-annotations;2.8.0 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-annotations/ivy-2.8.0.xml
downloadGrapes: module revision found in cache: com.fasterxml.jackson.core#jackson-annotations;2.8.0
found com.fasterxml.jackson.core#jackson-annotations;2.8.0 in localm2
== resolving dependencies com.fasterxml.jackson.core#jackson-databind;2.8.11.2→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
== resolving dependencies com.fasterxml.jackson.core#jackson-databind;2.8.11.2→com.fasterxml.jackson.core#jackson-core;2.8.11 [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.10 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.10 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.10 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.10 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
using downloadGrapes to resolve com.fasterxml.jackson.core#jackson-core;2.8.11
downloadGrapes: Checking cache for: dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-core/ivy-2.8.11.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.fasterxml.jackson.core#jackson-core;2.8.11 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.core/jackson-core/ivy-2.8.11.xml
downloadGrapes: module revision found in cache: com.fasterxml.jackson.core#jackson-core;2.8.11
found com.fasterxml.jackson.core#jackson-core;2.8.11 in localm2
== resolving dependencies com.fasterxml.jackson.core#jackson-databind;2.8.11.2→com.fasterxml.jackson.core#jackson-core;2.8.11 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework#spring-web;4.3.18.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-web/ivy-4.3.18.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework#spring-web;4.3.18.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-web/ivy-4.3.18.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework#spring-web;4.3.18.RELEASE
found org.springframework#spring-web;4.3.18.RELEASE in localm2
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework#spring-webmvc;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-webmvc;4.3.18.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework#spring-webmvc;4.3.18.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-webmvc/ivy-4.3.18.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework#spring-webmvc;4.3.18.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-webmvc/ivy-4.3.18.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework#spring-webmvc;4.3.18.RELEASE
found org.springframework#spring-webmvc;4.3.18.RELEASE in localm2
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework#spring-webmvc;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-webmvc;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→runtime()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→compile]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: net.sf.jopt-simple#jopt-simple;5.0.3 {optional=[compile(), master()]} ⇒ dependency: net.sf.jopt-simple#jopt-simple;4.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
== resolving dependencies org.springframework#spring-core;4.3.18.RELEASE→commons-logging#commons-logging;1.2 [runtime→runtime()]
dependency descriptor has been mediated: dependency: net.sf.jopt-simple#jopt-simple;5.0.3 {optional=[compile(), master()]} ⇒ dependency: net.sf.jopt-simple#jopt-simple;4.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.jopt-simple#jopt-simple;5.0.3 {optional=[compile(), master()]} ⇒ dependency: net.sf.jopt-simple#jopt-simple;4.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.jopt-simple#jopt-simple;5.0.3 {optional=[compile(), master()]} ⇒ dependency: net.sf.jopt-simple#jopt-simple;4.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.jopt-simple#jopt-simple;5.0.3 {optional=[compile(), master()]} ⇒ dependency: net.sf.jopt-simple#jopt-simple;4.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.jopt-simple#jopt-simple;5.0.3 {optional=[compile(), master()]} ⇒ dependency: net.sf.jopt-simple#jopt-simple;4.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.jopt-simple#jopt-simple;5.0.3 {optional=[compile(), master()]} ⇒ dependency: net.sf.jopt-simple#jopt-simple;4.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
loadData of commons-logging#commons-logging;1.2 of rootConf=default
using downloadGrapes to resolve commons-logging#commons-logging;1.2
downloadGrapes: Checking cache for: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/commons-logging/commons-logging/ivy-1.2.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for commons-logging#commons-logging;1.2 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/commons-logging/commons-logging/ivy-1.2.xml
downloadGrapes: module revision found in cache: commons-logging#commons-logging;1.2
found commons-logging#commons-logging;1.2 in localm2
== resolving dependencies org.springframework#spring-core;4.3.18.RELEASE→commons-logging#commons-logging;1.2 [runtime→compile]
loadData of commons-logging#commons-logging;1.2 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework#spring-core;4.3.18.RELEASE→commons-logging#commons-logging;1.2 [runtime→master()]
loadData of commons-logging#commons-logging;1.2 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework#spring-core;4.3.18.RELEASE→commons-logging#commons-logging;1.2 [runtime→compile()]
loadData of commons-logging#commons-logging;1.2 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot;1.5.14.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot;1.5.14.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.hibernate#hibernate-validator;4.3.2.Final {optional=[compile(), master()]} ⇒ dependency: org.hibernate#hibernate-validator;5.3.6.Final {optional=[compile(), master()]}
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.apache.commons#commons-pool2;2.4.2 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-pool2;2.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
== resolving dependencies org.springframework#spring-aop;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework#spring-aop;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework#spring-beans;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-beans;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-aop;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-aop;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework#spring-context;4.3.18.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework#spring-expression;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-expression;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→ch.qos.logback#logback-classic;1.1.11 [runtime→runtime()]
loadData of ch.qos.logback#logback-classic;1.1.11 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→ch.qos.logback#logback-classic;1.1.11 [runtime→compile]
loadData of ch.qos.logback#logback-classic;1.1.11 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#log4j-over-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#log4j-over-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#jul-to-slf4j;1.7.22 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#jul-to-slf4j;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.h2database#h2;1.2.132 {test=[runtime(), master()]} ⇒ dependency: com.h2database#h2;1.4.197 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.9 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.0 {optional=[compile(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;1.7.1 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
== resolving dependencies ch.qos.logback#logback-classic;1.1.11→ch.qos.logback#logback-core;1.1.11 [runtime→runtime()]
loadData of ch.qos.logback#logback-core;1.1.11 of rootConf=default
== resolving dependencies ch.qos.logback#logback-classic;1.1.11→ch.qos.logback#logback-core;1.1.11 [runtime→compile]
loadData of ch.qos.logback#logback-core;1.1.11 of rootConf=default
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.2 {test=[runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;1.7.1 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
== resolving dependencies ch.qos.logback#logback-classic;1.1.11→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
== resolving dependencies ch.qos.logback#logback-classic;1.1.11→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→org.slf4j#jcl-over-slf4j;1.7.25 [runtime→runtime()]
loadData of org.slf4j#jcl-over-slf4j;1.7.25 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→org.slf4j#jcl-over-slf4j;1.7.25 [runtime→compile]
loadData of org.slf4j#jcl-over-slf4j;1.7.25 of rootConf=default
== resolving dependencies org.slf4j#jcl-over-slf4j;1.7.25→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.slf4j#jcl-over-slf4j;1.7.25→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→org.slf4j#jul-to-slf4j;1.7.25 [runtime→runtime()]
loadData of org.slf4j#jul-to-slf4j;1.7.25 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→org.slf4j#jul-to-slf4j;1.7.25 [runtime→compile]
loadData of org.slf4j#jul-to-slf4j;1.7.25 of rootConf=default
== resolving dependencies org.slf4j#jul-to-slf4j;1.7.25→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.slf4j#jul-to-slf4j;1.7.25→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→org.slf4j#log4j-over-slf4j;1.7.25 [runtime→runtime()]
loadData of org.slf4j#log4j-over-slf4j;1.7.25 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE→org.slf4j#log4j-over-slf4j;1.7.25 [runtime→compile]
loadData of org.slf4j#log4j-over-slf4j;1.7.25 of rootConf=default
== resolving dependencies org.slf4j#log4j-over-slf4j;1.7.25→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.slf4j#log4j-over-slf4j;1.7.25→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.yaml#snakeyaml;1.17 [runtime→master()]
loadData of org.yaml#snakeyaml;1.17 of rootConf=default
using downloadGrapes to resolve org.yaml#snakeyaml;1.17
downloadGrapes: Checking cache for: dependency: org.yaml#snakeyaml;1.17 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.yaml/snakeyaml/ivy-1.17.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.yaml#snakeyaml;1.17 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.yaml/snakeyaml/ivy-1.17.xml
downloadGrapes: module revision found in cache: org.yaml#snakeyaml;1.17
found org.yaml#snakeyaml;1.17 in localm2
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {test=[runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.yaml#snakeyaml;1.17 [runtime→runtime()]
loadData of org.yaml#snakeyaml;1.17 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.yaml#snakeyaml;1.17 [runtime→compile]
loadData of org.yaml#snakeyaml;1.17 of rootConf=default
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {test=[runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {test=[runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter;1.5.14.RELEASE→org.yaml#snakeyaml;1.17 [runtime→compile()]
loadData of org.yaml#snakeyaml;1.17 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-core;8.5.31 [runtime→runtime()]
loadData of org.apache.tomcat.embed#tomcat-embed-core;8.5.31 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-core;8.5.31 [runtime→compile]
loadData of org.apache.tomcat.embed#tomcat-embed-core;8.5.31 of rootConf=default
== resolving dependencies org.apache.tomcat.embed#tomcat-embed-core;8.5.31→org.apache.tomcat#tomcat-annotations-api;8.5.31 [runtime→runtime()]
loadData of org.apache.tomcat#tomcat-annotations-api;8.5.31 of rootConf=default
== resolving dependencies org.apache.tomcat.embed#tomcat-embed-core;8.5.31→org.apache.tomcat#tomcat-annotations-api;8.5.31 [runtime→compile]
loadData of org.apache.tomcat#tomcat-annotations-api;8.5.31 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-el;8.5.31 [runtime→runtime()]
loadData of org.apache.tomcat.embed#tomcat-embed-el;8.5.31 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-el;8.5.31 [runtime→compile]
loadData of org.apache.tomcat.embed#tomcat-embed-el;8.5.31 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 [runtime→runtime()]
loadData of org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 [runtime→compile]
loadData of org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 of rootConf=default
== resolving dependencies org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31→org.apache.tomcat.embed#tomcat-embed-core;8.5.31 [runtime→runtime()]
loadData of org.apache.tomcat.embed#tomcat-embed-core;8.5.31 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31→org.apache.tomcat.embed#tomcat-embed-core;8.5.31 [runtime→compile]
loadData of org.apache.tomcat.embed#tomcat-embed-core;8.5.31 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.hibernate#hibernate-validator;5.3.6.Final [runtime→runtime()]
loadData of org.hibernate#hibernate-validator;5.3.6.Final of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.hibernate#hibernate-validator;5.3.6.Final [runtime→compile]
loadData of org.hibernate#hibernate-validator;5.3.6.Final of rootConf=default
dependency descriptor has been mediated: dependency: org.jboss.logging#jboss-logging;3.3.0.Final {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.jboss.logging#jboss-logging;3.3.2.Final {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml#classmate;1.3.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml#classmate;1.3.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.9.5 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-jsr223;2.4.8 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-jsr223;2.4.15 {test=[runtime(), master()]}
== resolving dependencies org.hibernate#hibernate-validator;5.3.6.Final→javax.validation#validation-api;1.1.0.Final [runtime→runtime()]
loadData of javax.validation#validation-api;1.1.0.Final of rootConf=default
== resolving dependencies org.hibernate#hibernate-validator;5.3.6.Final→javax.validation#validation-api;1.1.0.Final [runtime→compile]
loadData of javax.validation#validation-api;1.1.0.Final of rootConf=default
== resolving dependencies org.hibernate#hibernate-validator;5.3.6.Final→org.jboss.logging#jboss-logging;3.3.2.Final [runtime→runtime()]
loadData of org.jboss.logging#jboss-logging;3.3.2.Final of rootConf=default
== resolving dependencies org.hibernate#hibernate-validator;5.3.6.Final→org.jboss.logging#jboss-logging;3.3.2.Final [runtime→compile]
loadData of org.jboss.logging#jboss-logging;3.3.2.Final of rootConf=default
dependency descriptor has been mediated: dependency: log4j#log4j;1.2.16 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: log4j#log4j;1.2.17 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.logging.log4j#log4j-api;2.0 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.apache.logging.log4j#log4j-api;2.7 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.2 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {provided=[compile(), provided(), runtime(), master()]}
== resolving dependencies org.hibernate#hibernate-validator;5.3.6.Final→com.fasterxml#classmate;1.3.4 [runtime→runtime()]
loadData of com.fasterxml#classmate;1.3.4 of rootConf=default
== resolving dependencies org.hibernate#hibernate-validator;5.3.6.Final→com.fasterxml#classmate;1.3.4 [runtime→compile]
loadData of com.fasterxml#classmate;1.3.4 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.10 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.fasterxml.jackson.core#jackson-databind;2.8.11.2→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
== resolving dependencies com.fasterxml.jackson.core#jackson-databind;2.8.11.2→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
== resolving dependencies com.fasterxml.jackson.core#jackson-databind;2.8.11.2→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
== resolving dependencies com.fasterxml.jackson.core#jackson-databind;2.8.11.2→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.4.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.0.38.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.validation#validation-api;1.0.0.GA {optional=[compile(), master()]} ⇒ dependency: javax.validation#validation-api;1.1.0.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-web;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework#spring-webmvc;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-webmvc;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE→org.springframework#spring-webmvc;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-webmvc;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-webmvc;4.3.18.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-vault-config-rabbitmq/ivy-1.1.1.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-vault-config-rabbitmq/ivy-1.1.1.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE
found org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE in jcenter
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-vault-config/ivy-1.1.1.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-vault-config/ivy-1.1.1.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE
found org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE in jcenter
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-commons/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-commons/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE in localm2
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.6.0 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.6.0 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]} in compile
== resolving dependencies org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE→org.springframework.security#spring-security-crypto;4.2.7.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.6.0 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.6.0 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.6.0 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.6.0 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
loadData of org.springframework.security#spring-security-crypto;4.2.7.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.security#spring-security-crypto;4.2.7.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.security/spring-security-crypto/ivy-4.2.7.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.security#spring-security-crypto;4.2.7.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.security/spring-security-crypto/ivy-4.2.7.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.security#spring-security-crypto;4.2.7.RELEASE
found org.springframework.security#spring-security-crypto;4.2.7.RELEASE in localm2
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE→org.springframework.security#spring-security-crypto;4.2.7.RELEASE [compile→compile()]
loadData of org.springframework.security#spring-security-crypto;4.2.7.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.squareup.okhttp3#okhttp;3.6.0 {optional=[compile(), master()]} ⇒ dependency: com.squareup.okhttp3#okhttp;3.8.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]} in runtime
== resolving dependencies org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE→org.springframework.security#spring-security-crypto;4.2.7.RELEASE [runtime→runtime()]
loadData of org.springframework.security#spring-security-crypto;4.2.7.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE→org.springframework.security#spring-security-crypto;4.2.7.RELEASE [runtime→compile]
loadData of org.springframework.security#spring-security-crypto;4.2.7.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-context/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-context/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE→org.springframework.security#spring-security-crypto;4.2.7.RELEASE [compile→master()]
loadData of org.springframework.security#spring-security-crypto;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE→org.springframework.security#spring-security-crypto;4.2.7.RELEASE [compile→compile()]
loadData of org.springframework.security#spring-security-crypto;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE→org.springframework.security#spring-security-crypto;4.2.7.RELEASE [runtime→runtime()]
loadData of org.springframework.security#spring-security-crypto;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE→org.springframework.security#spring-security-crypto;4.2.7.RELEASE [runtime→compile]
loadData of org.springframework.security#spring-security-crypto;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.vault#spring-vault-core;1.1.2.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
loadData of org.springframework.vault#spring-vault-core;1.1.2.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.vault#spring-vault-core;1.1.2.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.vault#spring-vault-core;1.1.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.vault/spring-vault-core/ivy-1.1.2.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.vault#spring-vault-core;1.1.2.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.vault/spring-vault-core/ivy-1.1.2.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.vault#spring-vault-core;1.1.2.RELEASE
found org.springframework.vault#spring-vault-core;1.1.2.RELEASE in jcenter
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.22.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.10.0 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.4.0 {test=[runtime(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.10 {optional=[compile(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-jcl;1.7.16 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-jcl;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.vault#spring-vault-core;1.1.2.RELEASE [compile→compile()]
loadData of org.springframework.vault#spring-vault-core;1.1.2.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.22.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.10.0 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.4.0 {test=[runtime(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.10 {optional=[compile(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-jcl;1.7.16 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-jcl;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.springframework.vault#spring-vault-core;1.1.2.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.22.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.10.0 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.4.0 {test=[runtime(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.10 {optional=[compile(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-jcl;1.7.16 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-jcl;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.22.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.10.0 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.4.0 {test=[runtime(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.10 {optional=[compile(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-jcl;1.7.16 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-jcl;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.22.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.10.0 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.4.0 {test=[runtime(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.10 {optional=[compile(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-jcl;1.7.16 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-jcl;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.22.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.10.0 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.4.0 {test=[runtime(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.10 {optional=[compile(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-jcl;1.7.16 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-jcl;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.22.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.10.0 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.4.0 {test=[runtime(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.10 {optional=[compile(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-jcl;1.7.16 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-jcl;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.vault#spring-vault-core;1.1.2.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.vault#spring-vault-core;1.1.2.RELEASE [compile→runtime()]
loadData of org.springframework.vault#spring-vault-core;1.1.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.vault#spring-vault-core;1.1.2.RELEASE [compile→compile]
loadData of org.springframework.vault#spring-vault-core;1.1.2.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in runtime
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in runtime
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in runtime
dependency descriptor has been mediated: dependency: io.netty#netty-all;4.1.22.Final {optional=[compile(), master()]} ⇒ dependency: io.netty#netty-all;4.1.25.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.10.0 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.4.0 {test=[runtime(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.10 {optional=[compile(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-jcl;1.7.16 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-jcl;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.springframework.vault#spring-vault-core;1.1.2.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.vault#spring-vault-core;1.1.2.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [compile→default]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [compile→runtime]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.vault#spring-vault-core;1.1.2.RELEASE [runtime→runtime()]
loadData of org.springframework.vault#spring-vault-core;1.1.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE→org.springframework.vault#spring-vault-core;1.1.2.RELEASE [runtime→compile]
loadData of org.springframework.vault#spring-vault-core;1.1.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [compile→master]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-vault-config-consul/ivy-1.1.1.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-vault-config-consul/ivy-1.1.1.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE
found org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE in jcenter
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-vault-config-databases/ivy-1.1.1.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-vault-config-databases/ivy-1.1.1.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE
found org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE in jcenter
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {test=[runtime(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.40 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {test=[runtime(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.40 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {test=[runtime(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.40 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {test=[runtime(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: mysql#mysql-connector-java;5.1.40 {test=[runtime(), master()]} ⇒ dependency: mysql#mysql-connector-java;5.1.46 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-vault-config-aws/ivy-1.1.1.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-vault-config-aws/ivy-1.1.1.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE
found org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE in jcenter
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.projectlombok#lombok;1.16.18 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.projectlombok#lombok;1.16.14 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.8.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-contract-stub-runner/ivy-1.2.5.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-contract-stub-runner/ivy-1.2.5.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE
found org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE in jcenter
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-contract-verifier/ivy-1.2.5.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-contract-verifier/ivy-1.2.5.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE
found org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-contract-spec/ivy-1.2.5.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-contract-spec/ivy-1.2.5.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE
found org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.codehaus.groovy#groovy;2.4.15 [compile→master()]
loadData of org.codehaus.groovy#groovy;2.4.15 of rootConf=default
using downloadGrapes to resolve org.codehaus.groovy#groovy;2.4.15
downloadGrapes: Checking cache for: dependency: org.codehaus.groovy#groovy;2.4.15 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.codehaus.groovy/groovy/ivy-2.4.15.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.codehaus.groovy#groovy;2.4.15 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.codehaus.groovy/groovy/ivy-2.4.15.xml
downloadGrapes: module revision found in cache: org.codehaus.groovy#groovy;2.4.15
found org.codehaus.groovy#groovy;2.4.15 in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.codehaus.groovy#groovy;2.4.15 [compile→compile()]
loadData of org.codehaus.groovy#groovy;2.4.15 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.codehaus.groovy#groovy-nio;2.4.15 [compile→master()]
loadData of org.codehaus.groovy#groovy-nio;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.codehaus.groovy#groovy-nio;2.4.15 [compile→compile()]
loadData of org.codehaus.groovy#groovy-nio;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.codehaus.groovy#groovy-json;2.4.15 [compile→master()]
loadData of org.codehaus.groovy#groovy-json;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.codehaus.groovy#groovy-json;2.4.15 [compile→compile()]
loadData of org.codehaus.groovy#groovy-json;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.codehaus.groovy#groovy-xml;2.4.15 [compile→master()]
loadData of org.codehaus.groovy#groovy-xml;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.codehaus.groovy#groovy-xml;2.4.15 [compile→compile()]
loadData of org.codehaus.groovy#groovy-xml;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→dk.brics.automaton#automaton;1.11-8 [compile→master()]
loadData of dk.brics.automaton#automaton;1.11-8 of rootConf=default
using downloadGrapes to resolve dk.brics.automaton#automaton;1.11-8
downloadGrapes: Checking cache for: dependency: dk.brics.automaton#automaton;1.11-8 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/dk.brics.automaton/automaton/ivy-1.11-8.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for dk.brics.automaton#automaton;1.11-8 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/dk.brics.automaton/automaton/ivy-1.11-8.xml
downloadGrapes: module revision found in cache: dk.brics.automaton#automaton;1.11-8
found dk.brics.automaton#automaton;1.11-8 in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→dk.brics.automaton#automaton;1.11-8 [compile→compile()]
loadData of dk.brics.automaton#automaton;1.11-8 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.apache.commons#commons-text;1.1 [compile→master()]
loadData of org.apache.commons#commons-text;1.1 of rootConf=default
using downloadGrapes to resolve org.apache.commons#commons-text;1.1
downloadGrapes: Checking cache for: dependency: org.apache.commons#commons-text;1.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.commons/commons-text/ivy-1.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.apache.commons#commons-text;1.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.commons/commons-text/ivy-1.1.xml
downloadGrapes: module revision found in cache: org.apache.commons#commons-text;1.1
found org.apache.commons#commons-text;1.1 in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.apache.commons#commons-text;1.1 [compile→compile()]
loadData of org.apache.commons#commons-text;1.1 of rootConf=default
== resolving dependencies org.apache.commons#commons-text;1.1→org.apache.commons#commons-lang3;3.5 [compile→master()]
loadData of org.apache.commons#commons-lang3;3.5 of rootConf=default
using downloadGrapes to resolve org.apache.commons#commons-lang3;3.5
downloadGrapes: Checking cache for: dependency: org.apache.commons#commons-lang3;3.5 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.commons/commons-lang3/ivy-3.5.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.apache.commons#commons-lang3;3.5 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.commons/commons-lang3/ivy-3.5.xml
downloadGrapes: module revision found in cache: org.apache.commons#commons-lang3;3.5
found org.apache.commons#commons-lang3;3.5 in localm2
== resolving dependencies org.apache.commons#commons-text;1.1→org.apache.commons#commons-lang3;3.5 [compile→compile()]
loadData of org.apache.commons#commons-lang3;3.5 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.slf4j#slf4j-api;1.7.25 [compile→master()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.codehaus.groovy#groovy;2.4.15 [runtime→runtime()]
loadData of org.codehaus.groovy#groovy;2.4.15 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.codehaus.groovy#groovy;2.4.15 [runtime→compile]
loadData of org.codehaus.groovy#groovy;2.4.15 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.codehaus.groovy#groovy-nio;2.4.15 [runtime→runtime()]
loadData of org.codehaus.groovy#groovy-nio;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.codehaus.groovy#groovy-json;2.4.15 [runtime→runtime()]
loadData of org.codehaus.groovy#groovy-json;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.codehaus.groovy#groovy-xml;2.4.15 [runtime→runtime()]
loadData of org.codehaus.groovy#groovy-xml;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→dk.brics.automaton#automaton;1.11-8 [runtime→runtime()]
loadData of dk.brics.automaton#automaton;1.11-8 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→dk.brics.automaton#automaton;1.11-8 [runtime→compile]
loadData of dk.brics.automaton#automaton;1.11-8 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.apache.commons#commons-text;1.1 [runtime→runtime()]
loadData of org.apache.commons#commons-text;1.1 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.apache.commons#commons-text;1.1 [runtime→compile]
loadData of org.apache.commons#commons-text;1.1 of rootConf=default
== resolving dependencies org.apache.commons#commons-text;1.1→org.apache.commons#commons-lang3;3.5 [runtime→runtime()]
loadData of org.apache.commons#commons-lang3;3.5 of rootConf=default
== resolving dependencies org.apache.commons#commons-text;1.1→org.apache.commons#commons-lang3;3.5 [runtime→compile]
loadData of org.apache.commons#commons-lang3;3.5 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-test-autoconfigure/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-test-autoconfigure/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE
found org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE→org.springframework.boot#spring-boot-test;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-test;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-test;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-test/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.boot#spring-boot-test;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-test/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-test;1.5.14.RELEASE
found org.springframework.boot#spring-boot-test;1.5.14.RELEASE in localm2
== resolving dependencies org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE→org.springframework.boot#spring-boot-test;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-test;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-test;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-test;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→master()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→javax.inject#javax.inject;1 [compile→master()]
loadData of javax.inject#javax.inject;1 of rootConf=default
using downloadGrapes to resolve javax.inject#javax.inject;1
downloadGrapes: Checking cache for: dependency: javax.inject#javax.inject;1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/javax.inject/javax.inject/ivy-1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for javax.inject#javax.inject;1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/javax.inject/javax.inject/ivy-1.xml
downloadGrapes: module revision found in cache: javax.inject#javax.inject;1
found javax.inject#javax.inject;1 in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→javax.inject#javax.inject;1 [compile→compile()]
loadData of javax.inject#javax.inject;1 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.slf4j#slf4j-api;1.7.25 [compile→master()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.github.tomakehurst#wiremock-standalone;2.16.0 [compile→master()]
loadData of com.github.tomakehurst#wiremock-standalone;2.16.0 of rootConf=default
using downloadGrapes to resolve com.github.tomakehurst#wiremock-standalone;2.16.0
downloadGrapes: Checking cache for: dependency: com.github.tomakehurst#wiremock-standalone;2.16.0 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.github.tomakehurst/wiremock-standalone/ivy-2.16.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.github.tomakehurst#wiremock-standalone;2.16.0 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.github.tomakehurst/wiremock-standalone/ivy-2.16.0.xml
downloadGrapes: module revision found in cache: com.github.tomakehurst#wiremock-standalone;2.16.0
found com.github.tomakehurst#wiremock-standalone;2.16.0 in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.github.tomakehurst#wiremock-standalone;2.16.0 [compile→compile()]
loadData of com.github.tomakehurst#wiremock-standalone;2.16.0 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.toomuchcoding.jsonassert#jsonassert;0.4.12 [compile→master()]
loadData of com.toomuchcoding.jsonassert#jsonassert;0.4.12 of rootConf=default
using downloadGrapes to resolve com.toomuchcoding.jsonassert#jsonassert;0.4.12
downloadGrapes: Checking cache for: dependency: com.toomuchcoding.jsonassert#jsonassert;0.4.12 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.toomuchcoding.jsonassert/jsonassert/ivy-0.4.12.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.toomuchcoding.jsonassert#jsonassert;0.4.12 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.toomuchcoding.jsonassert/jsonassert/ivy-0.4.12.xml
downloadGrapes: module revision found in cache: com.toomuchcoding.jsonassert#jsonassert;0.4.12
found com.toomuchcoding.jsonassert#jsonassert;0.4.12 in localm2
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.toomuchcoding.jsonassert#jsonassert;0.4.12 [compile→compile()]
loadData of com.toomuchcoding.jsonassert#jsonassert;0.4.12 of rootConf=default
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies com.toomuchcoding.jsonassert#jsonassert;0.4.12→com.jayway.jsonpath#json-path;2.2.0 [compile→master()]
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
loadData of com.jayway.jsonpath#json-path;2.2.0 of rootConf=default
using downloadGrapes to resolve com.jayway.jsonpath#json-path;2.2.0
downloadGrapes: Checking cache for: dependency: com.jayway.jsonpath#json-path;2.2.0 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.jayway.jsonpath/json-path/ivy-2.2.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.jayway.jsonpath#json-path;2.2.0 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.jayway.jsonpath/json-path/ivy-2.2.0.xml
downloadGrapes: module revision found in cache: com.jayway.jsonpath#json-path;2.2.0
found com.jayway.jsonpath#json-path;2.2.0 in localm2
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.toomuchcoding.jsonassert#jsonassert;0.4.12→com.jayway.jsonpath#json-path;2.2.0 [compile→compile()]
loadData of com.jayway.jsonpath#json-path;2.2.0 of rootConf=default
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.jayway.jsonpath#json-path;2.2.0→net.minidev#json-smart;2.2.1 [compile→master()]
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
loadData of net.minidev#json-smart;2.2.1 of rootConf=default
using downloadGrapes to resolve net.minidev#json-smart;2.2.1
downloadGrapes: Checking cache for: dependency: net.minidev#json-smart;2.2.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/net.minidev/json-smart/ivy-2.2.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for net.minidev#json-smart;2.2.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/net.minidev/json-smart/ivy-2.2.1.xml
downloadGrapes: module revision found in cache: net.minidev#json-smart;2.2.1
found net.minidev#json-smart;2.2.1 in localm2
== resolving dependencies com.jayway.jsonpath#json-path;2.2.0→net.minidev#json-smart;2.2.1 [compile→compile()]
loadData of net.minidev#json-smart;2.2.1 of rootConf=default
== resolving dependencies net.minidev#json-smart;2.2.1→net.minidev#accessors-smart;1.1 [compile→master()]
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
loadData of net.minidev#accessors-smart;1.1 of rootConf=default
using downloadGrapes to resolve net.minidev#accessors-smart;1.1
downloadGrapes: Checking cache for: dependency: net.minidev#accessors-smart;1.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/net.minidev/accessors-smart/ivy-1.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for net.minidev#accessors-smart;1.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/net.minidev/accessors-smart/ivy-1.1.xml
downloadGrapes: module revision found in cache: net.minidev#accessors-smart;1.1
found net.minidev#accessors-smart;1.1 in localm2
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies net.minidev#json-smart;2.2.1→net.minidev#accessors-smart;1.1 [compile→compile()]
loadData of net.minidev#accessors-smart;1.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies net.minidev#accessors-smart;1.1→org.ow2.asm#asm;5.0.3 [compile→master()]
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
loadData of org.ow2.asm#asm;5.0.3 of rootConf=default
using downloadGrapes to resolve org.ow2.asm#asm;5.0.3
downloadGrapes: Checking cache for: dependency: org.ow2.asm#asm;5.0.3 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.ow2.asm/asm/ivy-5.0.3.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.ow2.asm#asm;5.0.3 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.ow2.asm/asm/ivy-5.0.3.xml
downloadGrapes: module revision found in cache: org.ow2.asm#asm;5.0.3
found org.ow2.asm#asm;5.0.3 in localm2
== resolving dependencies net.minidev#accessors-smart;1.1→org.ow2.asm#asm;5.0.3 [compile→compile()]
loadData of org.ow2.asm#asm;5.0.3 of rootConf=default
== resolving dependencies com.jayway.jsonpath#json-path;2.2.0→org.slf4j#slf4j-api;1.7.25 [compile→master()]
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.jayway.jsonpath#json-path;2.2.0→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.codehaus.groovy#groovy;2.4.15 [compile→master()]
loadData of org.codehaus.groovy#groovy;2.4.15 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.codehaus.groovy#groovy;2.4.15 [compile→compile()]
loadData of org.codehaus.groovy#groovy;2.4.15 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.codehaus.groovy#groovy-nio;2.4.15 [compile→master()]
loadData of org.codehaus.groovy#groovy-nio;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.codehaus.groovy#groovy-nio;2.4.15 [compile→compile()]
loadData of org.codehaus.groovy#groovy-nio;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.codehaus.groovy#groovy-json;2.4.15 [compile→master()]
loadData of org.codehaus.groovy#groovy-json;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.codehaus.groovy#groovy-json;2.4.15 [compile→compile()]
loadData of org.codehaus.groovy#groovy-json;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.codehaus.groovy#groovy-xml;2.4.15 [compile→master()]
loadData of org.codehaus.groovy#groovy-xml;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.codehaus.groovy#groovy-xml;2.4.15 [compile→compile()]
loadData of org.codehaus.groovy#groovy-xml;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.skyscreamer#jsonassert;1.4.0 [compile→master()]
loadData of org.skyscreamer#jsonassert;1.4.0 of rootConf=default
using downloadGrapes to resolve org.skyscreamer#jsonassert;1.4.0
downloadGrapes: Checking cache for: dependency: org.skyscreamer#jsonassert;1.4.0 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.skyscreamer/jsonassert/ivy-1.4.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.skyscreamer#jsonassert;1.4.0 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.skyscreamer/jsonassert/ivy-1.4.0.xml
downloadGrapes: module revision found in cache: org.skyscreamer#jsonassert;1.4.0
found org.skyscreamer#jsonassert;1.4.0 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.skyscreamer#jsonassert;1.4.0 [compile→compile()]
loadData of org.skyscreamer#jsonassert;1.4.0 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.skyscreamer#jsonassert;1.4.0→com.vaadin.external.google#android-json;0.0.20131108.vaadin1 [compile→master()]
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.vaadin.external.google#android-json;0.0.20131108.vaadin1 of rootConf=default
using downloadGrapes to resolve com.vaadin.external.google#android-json;0.0.20131108.vaadin1
downloadGrapes: Checking cache for: dependency: com.vaadin.external.google#android-json;0.0.20131108.vaadin1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.vaadin.external.google/android-json/ivy-0.0.20131108.vaadin1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.vaadin.external.google#android-json;0.0.20131108.vaadin1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.vaadin.external.google/android-json/ivy-0.0.20131108.vaadin1.xml
downloadGrapes: module revision found in cache: com.vaadin.external.google#android-json;0.0.20131108.vaadin1
found com.vaadin.external.google#android-json;0.0.20131108.vaadin1 in localm2
== resolving dependencies org.skyscreamer#jsonassert;1.4.0→com.vaadin.external.google#android-json;0.0.20131108.vaadin1 [compile→compile()]
loadData of com.vaadin.external.google#android-json;0.0.20131108.vaadin1 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.github.jknack#handlebars;4.0.6 [compile→master()]
loadData of com.github.jknack#handlebars;4.0.6 of rootConf=default
using downloadGrapes to resolve com.github.jknack#handlebars;4.0.6
downloadGrapes: Checking cache for: dependency: com.github.jknack#handlebars;4.0.6 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.github.jknack/handlebars/ivy-4.0.6.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.github.jknack#handlebars;4.0.6 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.github.jknack/handlebars/ivy-4.0.6.xml
downloadGrapes: module revision found in cache: com.github.jknack#handlebars;4.0.6
found com.github.jknack#handlebars;4.0.6 in localm2
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.github.jknack#handlebars;4.0.6 [compile→compile()]
loadData of com.github.jknack#handlebars;4.0.6 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.apache.commons#commons-lang3;3.1 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
loadData of org.apache.commons#commons-lang3;3.1 of rootConf=default
default is evicted. Skip loading
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.apache.commons#commons-lang3;3.5 [compile→master()]
loadData of org.apache.commons#commons-lang3;3.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.apache.commons#commons-lang3;3.1 [compile→compile()]
loadData of org.apache.commons#commons-lang3;3.1 of rootConf=default
default is evicted. Skip loading
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.apache.commons#commons-lang3;3.5 [compile→compile()]
loadData of org.apache.commons#commons-lang3;3.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.antlr#antlr4-runtime;4.5.1-1 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
loadData of org.antlr#antlr4-runtime;4.5.1-1 of rootConf=default
using downloadGrapes to resolve org.antlr#antlr4-runtime;4.5.1-1
downloadGrapes: Checking cache for: dependency: org.antlr#antlr4-runtime;4.5.1-1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.antlr/antlr4-runtime/ivy-4.5.1-1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.antlr#antlr4-runtime;4.5.1-1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.antlr/antlr4-runtime/ivy-4.5.1-1.xml
downloadGrapes: module revision found in cache: org.antlr#antlr4-runtime;4.5.1-1
found org.antlr#antlr4-runtime;4.5.1-1 in localm2
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.antlr#antlr4-runtime;4.5.1-1 [compile→compile()]
loadData of org.antlr#antlr4-runtime;4.5.1-1 of rootConf=default
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.mozilla#rhino;1.7R4 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
loadData of org.mozilla#rhino;1.7R4 of rootConf=default
using downloadGrapes to resolve org.mozilla#rhino;1.7R4
downloadGrapes: Checking cache for: dependency: org.mozilla#rhino;1.7R4 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.mozilla/rhino/ivy-1.7R4.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.mozilla#rhino;1.7R4 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.mozilla/rhino/ivy-1.7R4.xml
downloadGrapes: module revision found in cache: org.mozilla#rhino;1.7R4
found org.mozilla#rhino;1.7R4 in localm2
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.mozilla#rhino;1.7R4 [compile→compile()]
loadData of org.mozilla#rhino;1.7R4 of rootConf=default
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.slf4j#slf4j-api;1.7.25 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→commons-beanutils#commons-beanutils;1.9.3 [compile→master()]
loadData of commons-beanutils#commons-beanutils;1.9.3 of rootConf=default
using downloadGrapes to resolve commons-beanutils#commons-beanutils;1.9.3
downloadGrapes: Checking cache for: dependency: commons-beanutils#commons-beanutils;1.9.3 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/commons-beanutils/commons-beanutils/ivy-1.9.3.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for commons-beanutils#commons-beanutils;1.9.3 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/commons-beanutils/commons-beanutils/ivy-1.9.3.xml
downloadGrapes: module revision found in cache: commons-beanutils#commons-beanutils;1.9.3
found commons-beanutils#commons-beanutils;1.9.3 in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→commons-beanutils#commons-beanutils;1.9.3 [compile→compile()]
loadData of commons-beanutils#commons-beanutils;1.9.3 of rootConf=default
excluding dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} in compile
== resolving dependencies commons-beanutils#commons-beanutils;1.9.3→commons-collections#commons-collections;3.2.2 [compile→master()]
excluding dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} in compile
loadData of commons-collections#commons-collections;3.2.2 of rootConf=default
using downloadGrapes to resolve commons-collections#commons-collections;3.2.2
downloadGrapes: Checking cache for: dependency: commons-collections#commons-collections;3.2.2 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/commons-collections/commons-collections/ivy-3.2.2.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for commons-collections#commons-collections;3.2.2 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/commons-collections/commons-collections/ivy-3.2.2.xml
downloadGrapes: module revision found in cache: commons-collections#commons-collections;3.2.2
found commons-collections#commons-collections;3.2.2 in localm2
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies commons-beanutils#commons-beanutils;1.9.3→commons-collections#commons-collections;3.2.2 [compile→compile()]
loadData of commons-collections#commons-collections;3.2.2 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.yaml#snakeyaml;1.17 [compile→master()]
loadData of org.yaml#snakeyaml;1.17 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.yaml#snakeyaml;1.17 [compile→compile()]
loadData of org.yaml#snakeyaml;1.17 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-test/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-test/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
found org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework.boot#spring-boot-test;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-test;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework.boot#spring-boot-test;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-test;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→com.jayway.jsonpath#json-path;2.2.0 [compile→master()]
loadData of com.jayway.jsonpath#json-path;2.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→com.jayway.jsonpath#json-path;2.2.0 [compile→compile()]
loadData of com.jayway.jsonpath#json-path;2.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→junit#junit;4.12 [compile→master()]
loadData of junit#junit;4.12 of rootConf=default
using downloadGrapes to resolve junit#junit;4.12
downloadGrapes: Checking cache for: dependency: junit#junit;4.12 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/junit/junit/ivy-4.12.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for junit#junit;4.12 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/junit/junit/ivy-4.12.xml
downloadGrapes: module revision found in cache: junit#junit;4.12
found junit#junit;4.12 in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→junit#junit;4.12 [compile→compile()]
loadData of junit#junit;4.12 of rootConf=default
== resolving dependencies junit#junit;4.12→org.hamcrest#hamcrest-core;1.3 [compile→master()]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
using downloadGrapes to resolve org.hamcrest#hamcrest-core;1.3
downloadGrapes: Checking cache for: dependency: org.hamcrest#hamcrest-core;1.3 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.hamcrest/hamcrest-core/ivy-1.3.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.hamcrest#hamcrest-core;1.3 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.hamcrest/hamcrest-core/ivy-1.3.xml
downloadGrapes: module revision found in cache: org.hamcrest#hamcrest-core;1.3
found org.hamcrest#hamcrest-core;1.3 in localm2
== resolving dependencies junit#junit;4.12→org.hamcrest#hamcrest-core;1.3 [compile→compile()]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→junit#junit;4.12 [compile→runtime()]
loadData of junit#junit;4.12 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→junit#junit;4.12 [compile→compile]
loadData of junit#junit;4.12 of rootConf=default
== resolving dependencies junit#junit;4.12→org.hamcrest#hamcrest-core;1.3 [runtime→runtime()]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
== resolving dependencies junit#junit;4.12→org.hamcrest#hamcrest-core;1.3 [runtime→compile]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.assertj#assertj-core;2.6.0 [compile→master()]
loadData of org.assertj#assertj-core;2.6.0 of rootConf=default
using downloadGrapes to resolve org.assertj#assertj-core;2.6.0
downloadGrapes: Checking cache for: dependency: org.assertj#assertj-core;2.6.0 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.assertj/assertj-core/ivy-2.6.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.assertj#assertj-core;2.6.0 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.assertj/assertj-core/ivy-2.6.0.xml
downloadGrapes: module revision found in cache: org.assertj#assertj-core;2.6.0
found org.assertj#assertj-core;2.6.0 in localm2
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.2.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.assertj#assertj-core;2.6.0 [compile→compile()]
loadData of org.assertj#assertj-core;2.6.0 of rootConf=default
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.2.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.mockito#mockito-core;1.10.19 [compile→master()]
loadData of org.mockito#mockito-core;1.10.19 of rootConf=default
using downloadGrapes to resolve org.mockito#mockito-core;1.10.19
downloadGrapes: Checking cache for: dependency: org.mockito#mockito-core;1.10.19 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.mockito/mockito-core/ivy-1.10.19.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.mockito#mockito-core;1.10.19 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.mockito/mockito-core/ivy-1.10.19.xml
downloadGrapes: module revision found in cache: org.mockito#mockito-core;1.10.19
found org.mockito#mockito-core;1.10.19 in localm2
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.mockito#mockito-core;1.10.19 [compile→compile()]
loadData of org.mockito#mockito-core;1.10.19 of rootConf=default
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.hamcrest#hamcrest-core;1.3 [compile→master()]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.hamcrest#hamcrest-core;1.3 [compile→compile()]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.hamcrest#hamcrest-library;1.3 [compile→master()]
loadData of org.hamcrest#hamcrest-library;1.3 of rootConf=default
using downloadGrapes to resolve org.hamcrest#hamcrest-library;1.3
downloadGrapes: Checking cache for: dependency: org.hamcrest#hamcrest-library;1.3 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.hamcrest/hamcrest-library/ivy-1.3.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.hamcrest#hamcrest-library;1.3 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.hamcrest/hamcrest-library/ivy-1.3.xml
downloadGrapes: module revision found in cache: org.hamcrest#hamcrest-library;1.3
found org.hamcrest#hamcrest-library;1.3 in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.hamcrest#hamcrest-library;1.3 [compile→compile()]
loadData of org.hamcrest#hamcrest-library;1.3 of rootConf=default
== resolving dependencies org.hamcrest#hamcrest-library;1.3→org.hamcrest#hamcrest-core;1.3 [compile→master()]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.hamcrest#hamcrest-library;1.3→org.hamcrest#hamcrest-core;1.3 [compile→compile()]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.skyscreamer#jsonassert;1.4.0 [compile→master()]
loadData of org.skyscreamer#jsonassert;1.4.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.skyscreamer#jsonassert;1.4.0 [compile→compile()]
loadData of org.skyscreamer#jsonassert;1.4.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework#spring-test;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-test;4.3.18.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework#spring-test;4.3.18.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework#spring-test;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-test/ivy-4.3.18.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework#spring-test;4.3.18.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-test/ivy-4.3.18.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework#spring-test;4.3.18.RELEASE
found org.springframework#spring-test;4.3.18.RELEASE in localm2
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.3.0 {optional=[compile(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sourceforge.htmlunit#htmlunit;2.23 {optional=[compile(), master()]} ⇒ dependency: net.sourceforge.htmlunit#htmlunit;2.21 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.seleniumhq.selenium#htmlunit-driver;2.23.2 {optional=[compile(), master()]} ⇒ dependency: org.seleniumhq.selenium#htmlunit-driver;2.21 {optional=[compile(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework#spring-test;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-test;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.3.0 {optional=[compile(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sourceforge.htmlunit#htmlunit;2.23 {optional=[compile(), master()]} ⇒ dependency: net.sourceforge.htmlunit#htmlunit;2.21 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.seleniumhq.selenium#htmlunit-driver;2.23.2 {optional=[compile(), master()]} ⇒ dependency: org.seleniumhq.selenium#htmlunit-driver;2.21 {optional=[compile(), master()]}
== resolving dependencies org.springframework#spring-test;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.3.0 {optional=[compile(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sourceforge.htmlunit#htmlunit;2.23 {optional=[compile(), master()]} ⇒ dependency: net.sourceforge.htmlunit#htmlunit;2.21 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.seleniumhq.selenium#htmlunit-driver;2.23.2 {optional=[compile(), master()]} ⇒ dependency: org.seleniumhq.selenium#htmlunit-driver;2.21 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.3.0 {optional=[compile(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sourceforge.htmlunit#htmlunit;2.23 {optional=[compile(), master()]} ⇒ dependency: net.sourceforge.htmlunit#htmlunit;2.21 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.seleniumhq.selenium#htmlunit-driver;2.23.2 {optional=[compile(), master()]} ⇒ dependency: org.seleniumhq.selenium#htmlunit-driver;2.21 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.3.0 {optional=[compile(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sourceforge.htmlunit#htmlunit;2.23 {optional=[compile(), master()]} ⇒ dependency: net.sourceforge.htmlunit#htmlunit;2.21 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.seleniumhq.selenium#htmlunit-driver;2.23.2 {optional=[compile(), master()]} ⇒ dependency: org.seleniumhq.selenium#htmlunit-driver;2.21 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.3.0 {optional=[compile(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sourceforge.htmlunit#htmlunit;2.23 {optional=[compile(), master()]} ⇒ dependency: net.sourceforge.htmlunit#htmlunit;2.21 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.seleniumhq.selenium#htmlunit-driver;2.23.2 {optional=[compile(), master()]} ⇒ dependency: org.seleniumhq.selenium#htmlunit-driver;2.21 {optional=[compile(), master()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-test;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE→org.springframework.boot#spring-boot-test;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-test;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE→org.springframework.boot#spring-boot-test;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-test;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-test;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-test;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→javax.inject#javax.inject;1 [runtime→runtime()]
loadData of javax.inject#javax.inject;1 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→javax.inject#javax.inject;1 [runtime→compile]
loadData of javax.inject#javax.inject;1 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.github.tomakehurst#wiremock-standalone;2.16.0 [runtime→runtime()]
loadData of com.github.tomakehurst#wiremock-standalone;2.16.0 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.github.tomakehurst#wiremock-standalone;2.16.0 [runtime→compile]
loadData of com.github.tomakehurst#wiremock-standalone;2.16.0 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.toomuchcoding.jsonassert#jsonassert;0.4.12 [runtime→runtime()]
loadData of com.toomuchcoding.jsonassert#jsonassert;0.4.12 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.toomuchcoding.jsonassert#jsonassert;0.4.12 [runtime→compile]
loadData of com.toomuchcoding.jsonassert#jsonassert;0.4.12 of rootConf=default
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.5 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies com.toomuchcoding.jsonassert#jsonassert;0.4.12→com.jayway.jsonpath#json-path;2.2.0 [runtime→runtime()]
loadData of com.jayway.jsonpath#json-path;2.2.0 of rootConf=default
== resolving dependencies com.toomuchcoding.jsonassert#jsonassert;0.4.12→com.jayway.jsonpath#json-path;2.2.0 [runtime→compile]
loadData of com.jayway.jsonpath#json-path;2.2.0 of rootConf=default
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.3.1 {optional=[compile(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.16 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.jayway.jsonpath#json-path;2.2.0→net.minidev#json-smart;2.2.1 [runtime→runtime()]
loadData of net.minidev#json-smart;2.2.1 of rootConf=default
== resolving dependencies com.jayway.jsonpath#json-path;2.2.0→net.minidev#json-smart;2.2.1 [runtime→compile]
loadData of net.minidev#json-smart;2.2.1 of rootConf=default
== resolving dependencies net.minidev#json-smart;2.2.1→net.minidev#accessors-smart;1.1 [runtime→runtime()]
loadData of net.minidev#accessors-smart;1.1 of rootConf=default
== resolving dependencies net.minidev#json-smart;2.2.1→net.minidev#accessors-smart;1.1 [runtime→compile]
loadData of net.minidev#accessors-smart;1.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies net.minidev#accessors-smart;1.1→org.ow2.asm#asm;5.0.3 [runtime→runtime()]
loadData of org.ow2.asm#asm;5.0.3 of rootConf=default
== resolving dependencies net.minidev#accessors-smart;1.1→org.ow2.asm#asm;5.0.3 [runtime→compile]
loadData of org.ow2.asm#asm;5.0.3 of rootConf=default
== resolving dependencies com.jayway.jsonpath#json-path;2.2.0→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.jayway.jsonpath#json-path;2.2.0→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.codehaus.groovy#groovy;2.4.15 [runtime→runtime()]
loadData of org.codehaus.groovy#groovy;2.4.15 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.codehaus.groovy#groovy;2.4.15 [runtime→compile]
loadData of org.codehaus.groovy#groovy;2.4.15 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.codehaus.groovy#groovy-nio;2.4.15 [runtime→runtime()]
loadData of org.codehaus.groovy#groovy-nio;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.codehaus.groovy#groovy-json;2.4.15 [runtime→runtime()]
loadData of org.codehaus.groovy#groovy-json;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.codehaus.groovy#groovy-xml;2.4.15 [runtime→runtime()]
loadData of org.codehaus.groovy#groovy-xml;2.4.15 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.skyscreamer#jsonassert;1.4.0 [runtime→runtime()]
loadData of org.skyscreamer#jsonassert;1.4.0 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.skyscreamer#jsonassert;1.4.0 [runtime→compile]
loadData of org.skyscreamer#jsonassert;1.4.0 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.skyscreamer#jsonassert;1.4.0→com.vaadin.external.google#android-json;0.0.20131108.vaadin1 [runtime→runtime()]
loadData of com.vaadin.external.google#android-json;0.0.20131108.vaadin1 of rootConf=default
== resolving dependencies org.skyscreamer#jsonassert;1.4.0→com.vaadin.external.google#android-json;0.0.20131108.vaadin1 [runtime→compile]
loadData of com.vaadin.external.google#android-json;0.0.20131108.vaadin1 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.github.jknack#handlebars;4.0.6 [runtime→runtime()]
loadData of com.github.jknack#handlebars;4.0.6 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→com.github.jknack#handlebars;4.0.6 [runtime→compile]
loadData of com.github.jknack#handlebars;4.0.6 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.3 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.yaml#snakeyaml;1.10 {test=[runtime(), master()]} ⇒ dependency: org.yaml#snakeyaml;1.17 {test=[runtime(), master()]}
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.apache.commons#commons-lang3;3.1 [runtime→runtime()]
loadData of org.apache.commons#commons-lang3;3.1 of rootConf=default
default is evicted. Skip loading
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.apache.commons#commons-lang3;3.5 [runtime→runtime()]
loadData of org.apache.commons#commons-lang3;3.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.apache.commons#commons-lang3;3.5 [runtime→compile]
loadData of org.apache.commons#commons-lang3;3.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.antlr#antlr4-runtime;4.5.1-1 [runtime→runtime()]
loadData of org.antlr#antlr4-runtime;4.5.1-1 of rootConf=default
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.antlr#antlr4-runtime;4.5.1-1 [runtime→compile]
loadData of org.antlr#antlr4-runtime;4.5.1-1 of rootConf=default
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.mozilla#rhino;1.7R4 [runtime→runtime()]
loadData of org.mozilla#rhino;1.7R4 of rootConf=default
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.mozilla#rhino;1.7R4 [runtime→compile]
loadData of org.mozilla#rhino;1.7R4 of rootConf=default
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.github.jknack#handlebars;4.0.6→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→commons-beanutils#commons-beanutils;1.9.3 [runtime→runtime()]
loadData of commons-beanutils#commons-beanutils;1.9.3 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→commons-beanutils#commons-beanutils;1.9.3 [runtime→compile]
loadData of commons-beanutils#commons-beanutils;1.9.3 of rootConf=default
excluding dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} in runtime
== resolving dependencies commons-beanutils#commons-beanutils;1.9.3→commons-collections#commons-collections;3.2.2 [runtime→runtime()]
loadData of commons-collections#commons-collections;3.2.2 of rootConf=default
== resolving dependencies commons-beanutils#commons-beanutils;1.9.3→commons-collections#commons-collections;3.2.2 [runtime→compile]
loadData of commons-collections#commons-collections;3.2.2 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.yaml#snakeyaml;1.17 [runtime→runtime()]
loadData of org.yaml#snakeyaml;1.17 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.yaml#snakeyaml;1.17 [runtime→compile]
loadData of org.yaml#snakeyaml;1.17 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE→org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework.boot#spring-boot-test;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-test;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework.boot#spring-boot-test;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-test;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→com.jayway.jsonpath#json-path;2.2.0 [runtime→runtime()]
loadData of com.jayway.jsonpath#json-path;2.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→com.jayway.jsonpath#json-path;2.2.0 [runtime→compile]
loadData of com.jayway.jsonpath#json-path;2.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→junit#junit;4.12 [runtime→runtime()]
loadData of junit#junit;4.12 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→junit#junit;4.12 [runtime→compile]
loadData of junit#junit;4.12 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.assertj#assertj-core;2.6.0 [runtime→runtime()]
loadData of org.assertj#assertj-core;2.6.0 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.assertj#assertj-core;2.6.0 [runtime→compile]
loadData of org.assertj#assertj-core;2.6.0 of rootConf=default
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.2.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.mockito#mockito-core;1.10.19 [runtime→runtime()]
loadData of org.mockito#mockito-core;1.10.19 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.mockito#mockito-core;1.10.19 [runtime→compile]
loadData of org.mockito#mockito-core;1.10.19 of rootConf=default
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.mockito#mockito-core;1.10.19→org.hamcrest#hamcrest-core;1.3 [runtime→master()]
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.mockito#mockito-core;1.10.19→org.hamcrest#hamcrest-core;1.3 [runtime→runtime()]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.mockito#mockito-core;1.10.19→org.hamcrest#hamcrest-core;1.3 [runtime→compile]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.mockito#mockito-core;1.10.19→org.hamcrest#hamcrest-core;1.3 [runtime→compile()]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.mockito#mockito-core;1.10.19→org.objenesis#objenesis;2.1 [runtime→master()]
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hamcrest#hamcrest-core;1.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.hamcrest#hamcrest-core;1.3 {runtime=[compile(), runtime(), master()]}
loadData of org.objenesis#objenesis;2.1 of rootConf=default
using downloadGrapes to resolve org.objenesis#objenesis;2.1
downloadGrapes: Checking cache for: dependency: org.objenesis#objenesis;2.1 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.objenesis/objenesis/ivy-2.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.objenesis#objenesis;2.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.objenesis/objenesis/ivy-2.1.xml
downloadGrapes: module revision found in cache: org.objenesis#objenesis;2.1
found org.objenesis#objenesis;2.1 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.mockito#mockito-core;1.10.19→org.objenesis#objenesis;2.1 [runtime→runtime()]
loadData of org.objenesis#objenesis;2.1 of rootConf=default
== resolving dependencies org.mockito#mockito-core;1.10.19→org.objenesis#objenesis;2.1 [runtime→compile]
loadData of org.objenesis#objenesis;2.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.mockito#mockito-core;1.10.19→org.objenesis#objenesis;2.1 [runtime→compile()]
loadData of org.objenesis#objenesis;2.1 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.hamcrest#hamcrest-core;1.3 [runtime→runtime()]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.hamcrest#hamcrest-core;1.3 [runtime→compile]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.hamcrest#hamcrest-library;1.3 [runtime→runtime()]
loadData of org.hamcrest#hamcrest-library;1.3 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.hamcrest#hamcrest-library;1.3 [runtime→compile]
loadData of org.hamcrest#hamcrest-library;1.3 of rootConf=default
== resolving dependencies org.hamcrest#hamcrest-library;1.3→org.hamcrest#hamcrest-core;1.3 [runtime→runtime()]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.hamcrest#hamcrest-library;1.3→org.hamcrest#hamcrest-core;1.3 [runtime→compile]
loadData of org.hamcrest#hamcrest-core;1.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.skyscreamer#jsonassert;1.4.0 [runtime→runtime()]
loadData of org.skyscreamer#jsonassert;1.4.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.skyscreamer#jsonassert;1.4.0 [runtime→compile]
loadData of org.skyscreamer#jsonassert;1.4.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework#spring-test;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-test;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE→org.springframework#spring-test;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-test;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.jayway.jsonpath#json-path;2.3.0 {optional=[compile(), master()]} ⇒ dependency: com.jayway.jsonpath#json-path;2.2.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sourceforge.htmlunit#htmlunit;2.23 {optional=[compile(), master()]} ⇒ dependency: net.sourceforge.htmlunit#htmlunit;2.21 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.seleniumhq.selenium#htmlunit-driver;2.23.2 {optional=[compile(), master()]} ⇒ dependency: org.seleniumhq.selenium#htmlunit-driver;2.21 {optional=[compile(), master()]}
== resolving dependencies org.springframework#spring-test;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-test;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-contract-shade/ivy-1.2.5.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-contract-shade/ivy-1.2.5.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE
found org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→junit#junit;4.12 [compile→master()]
loadData of junit#junit;4.12 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→junit#junit;4.12 [compile→compile()]
loadData of junit#junit;4.12 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→junit#junit;4.12 [runtime→runtime()]
loadData of junit#junit;4.12 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE→junit#junit;4.12 [runtime→compile]
loadData of junit#junit;4.12 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-cloudfoundry-discovery/ivy-1.1.2.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-cloudfoundry-discovery/ivy-1.1.2.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE
found org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE in jcenter
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE→org.cloudfoundry#cloudfoundry-client-lib;1.1.3 [compile→master()]
loadData of org.cloudfoundry#cloudfoundry-client-lib;1.1.3 of rootConf=default
using downloadGrapes to resolve org.cloudfoundry#cloudfoundry-client-lib;1.1.3
downloadGrapes: Checking cache for: dependency: org.cloudfoundry#cloudfoundry-client-lib;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.cloudfoundry/cloudfoundry-client-lib/ivy-1.1.3.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.cloudfoundry#cloudfoundry-client-lib;1.1.3 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.cloudfoundry/cloudfoundry-client-lib/ivy-1.1.3.xml
downloadGrapes: module revision found in cache: org.cloudfoundry#cloudfoundry-client-lib;1.1.3
found org.cloudfoundry#cloudfoundry-client-lib;1.1.3 in localm2
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE→org.cloudfoundry#cloudfoundry-client-lib;1.1.3 [compile→compile()]
loadData of org.cloudfoundry#cloudfoundry-client-lib;1.1.3 of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.springframework#spring-webmvc;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.springframework#spring-webmvc;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.springframework#spring-webmvc;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-webmvc;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.security.oauth/spring-security-oauth2/ivy-2.0.15.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.security.oauth/spring-security-oauth2/ivy-2.0.15.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE
found org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE in localm2
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE [compile→compile()]
loadData of org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-webmvc;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
loadData of org.springframework#spring-webmvc;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-webmvc;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-webmvc;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework.security#spring-security-core;4.2.7.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.springframework.security#spring-security-core;4.2.7.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.security#spring-security-core;4.2.7.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.security/spring-security-core/ivy-4.2.7.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.security#spring-security-core;4.2.7.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.security/spring-security-core/ivy-4.2.7.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.security#spring-security-core;4.2.7.RELEASE
found org.springframework.security#spring-security-core;4.2.7.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework.security#spring-security-core;4.2.7.RELEASE [compile→compile()]
loadData of org.springframework.security#spring-security-core;4.2.7.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→aopalliance#aopalliance;1.0 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of aopalliance#aopalliance;1.0 of rootConf=default
using downloadGrapes to resolve aopalliance#aopalliance;1.0
downloadGrapes: Checking cache for: dependency: aopalliance#aopalliance;1.0 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/aopalliance/aopalliance/ivy-1.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for aopalliance#aopalliance;1.0 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/aopalliance/aopalliance/ivy-1.0.xml
downloadGrapes: module revision found in cache: aopalliance#aopalliance;1.0
found aopalliance#aopalliance;1.0 in localm2
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→aopalliance#aopalliance;1.0 [compile→compile()]
loadData of aopalliance#aopalliance;1.0 of rootConf=default
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework.security#spring-security-config;4.2.7.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.springframework.security#spring-security-config;4.2.7.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.security#spring-security-config;4.2.7.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.security/spring-security-config/ivy-4.2.7.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.security#spring-security-config;4.2.7.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.security/spring-security-config/ivy-4.2.7.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.security#spring-security-config;4.2.7.RELEASE
found org.springframework.security#spring-security-config;4.2.7.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework.security#spring-security-config;4.2.7.RELEASE [compile→compile()]
loadData of org.springframework.security#spring-security-config;4.2.7.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→aopalliance#aopalliance;1.0 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of aopalliance#aopalliance;1.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→aopalliance#aopalliance;1.0 [compile→compile()]
loadData of aopalliance#aopalliance;1.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework.security#spring-security-core;4.2.7.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework.security#spring-security-core;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework.security#spring-security-core;4.2.7.RELEASE [compile→compile()]
loadData of org.springframework.security#spring-security-core;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework.security#spring-security-web;4.2.7.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.springframework.security#spring-security-web;4.2.7.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.security#spring-security-web;4.2.7.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.security/spring-security-web/ivy-4.2.7.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.security#spring-security-web;4.2.7.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.security/spring-security-web/ivy-4.2.7.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.security#spring-security-web;4.2.7.RELEASE
found org.springframework.security#spring-security-web;4.2.7.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework.security#spring-security-web;4.2.7.RELEASE [compile→compile()]
loadData of org.springframework.security#spring-security-web;4.2.7.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→aopalliance#aopalliance;1.0 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of aopalliance#aopalliance;1.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→aopalliance#aopalliance;1.0 [compile→compile()]
loadData of aopalliance#aopalliance;1.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework.security#spring-security-core;4.2.7.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework.security#spring-security-core;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework.security#spring-security-core;4.2.7.RELEASE [compile→compile()]
loadData of org.springframework.security#spring-security-core;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→commons-codec#commons-codec;1.10 [compile→master()]
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of commons-codec#commons-codec;1.10 of rootConf=default
using downloadGrapes to resolve commons-codec#commons-codec;1.10
downloadGrapes: Checking cache for: dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/commons-codec/commons-codec/ivy-1.10.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for commons-codec#commons-codec;1.10 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/commons-codec/commons-codec/ivy-1.10.xml
downloadGrapes: module revision found in cache: commons-codec#commons-codec;1.10
found commons-codec#commons-codec;1.10 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→commons-codec#commons-codec;1.10 [compile→compile()]
loadData of commons-codec#commons-codec;1.10 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.codehaus.jackson#jackson-mapper-asl;1.9.13 [compile→master()]
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.13 of rootConf=default
using downloadGrapes to resolve org.codehaus.jackson#jackson-mapper-asl;1.9.13
downloadGrapes: Checking cache for: dependency: org.codehaus.jackson#jackson-mapper-asl;1.9.13 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.codehaus.jackson/jackson-mapper-asl/ivy-1.9.13.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.codehaus.jackson#jackson-mapper-asl;1.9.13 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.codehaus.jackson/jackson-mapper-asl/ivy-1.9.13.xml
downloadGrapes: module revision found in cache: org.codehaus.jackson#jackson-mapper-asl;1.9.13
found org.codehaus.jackson#jackson-mapper-asl;1.9.13 in localm2
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.codehaus.jackson#jackson-mapper-asl;1.9.13 [compile→compile()]
loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.13 of rootConf=default
== resolving dependencies org.codehaus.jackson#jackson-mapper-asl;1.9.13→org.codehaus.jackson#jackson-core-asl;1.9.13 [compile→master()]
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.codehaus.jackson#jackson-core-asl;1.9.13 of rootConf=default
using downloadGrapes to resolve org.codehaus.jackson#jackson-core-asl;1.9.13
downloadGrapes: Checking cache for: dependency: org.codehaus.jackson#jackson-core-asl;1.9.13 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.codehaus.jackson/jackson-core-asl/ivy-1.9.13.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.codehaus.jackson#jackson-core-asl;1.9.13 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.codehaus.jackson/jackson-core-asl/ivy-1.9.13.xml
downloadGrapes: module revision found in cache: org.codehaus.jackson#jackson-core-asl;1.9.13
found org.codehaus.jackson#jackson-core-asl;1.9.13 in localm2
== resolving dependencies org.codehaus.jackson#jackson-mapper-asl;1.9.13→org.codehaus.jackson#jackson-core-asl;1.9.13 [compile→compile()]
loadData of org.codehaus.jackson#jackson-core-asl;1.9.13 of rootConf=default
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.apache.httpcomponents#httpclient;4.5.5 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
using downloadGrapes to resolve org.apache.httpcomponents#httpclient;4.5.5
downloadGrapes: Checking cache for: dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.httpcomponents/httpclient/ivy-4.5.5.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.apache.httpcomponents#httpclient;4.5.5 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.httpcomponents/httpclient/ivy-4.5.5.xml
downloadGrapes: module revision found in cache: org.apache.httpcomponents#httpclient;4.5.5
found org.apache.httpcomponents#httpclient;4.5.5 in localm2
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.apache.httpcomponents#httpclient;4.5.5 [compile→compile()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→org.apache.httpcomponents#httpcore;4.4.9 [compile→master()]
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
using downloadGrapes to resolve org.apache.httpcomponents#httpcore;4.4.9
downloadGrapes: Checking cache for: dependency: org.apache.httpcomponents#httpcore;4.4.9 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.httpcomponents/httpcore/ivy-4.4.9.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.apache.httpcomponents#httpcore;4.4.9 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.httpcomponents/httpcore/ivy-4.4.9.xml
downloadGrapes: module revision found in cache: org.apache.httpcomponents#httpcore;4.4.9
found org.apache.httpcomponents#httpcore;4.4.9 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.12 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {test=[runtime(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {test=[runtime(), master()]}
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→org.apache.httpcomponents#httpcore;4.4.9 [compile→compile()]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.12 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {test=[runtime(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {test=[runtime(), master()]}
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→commons-logging#commons-logging;1.1.3 [compile→master()]
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of commons-logging#commons-logging;1.1.3 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→commons-logging#commons-logging;1.2 [compile→master()]
loadData of commons-logging#commons-logging;1.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→commons-logging#commons-logging;1.1.3 [compile→compile()]
loadData of commons-logging#commons-logging;1.1.3 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→commons-logging#commons-logging;1.2 [compile→compile()]
loadData of commons-logging#commons-logging;1.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→commons-codec#commons-codec;1.10 [compile→master()]
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of commons-codec#commons-codec;1.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→commons-codec#commons-codec;1.10 [compile→compile()]
loadData of commons-codec#commons-codec;1.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→commons-io#commons-io;2.1 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of commons-io#commons-io;2.1 of rootConf=default
using downloadGrapes to resolve commons-io#commons-io;2.1
downloadGrapes: Checking cache for: dependency: commons-io#commons-io;2.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/commons-io/commons-io/ivy-2.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for commons-io#commons-io;2.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/commons-io/commons-io/ivy-2.1.xml
downloadGrapes: module revision found in cache: commons-io#commons-io;2.1
found commons-io#commons-io;2.1 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→commons-io#commons-io;2.1 [compile→compile()]
loadData of commons-io#commons-io;2.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.esotericsoftware.yamlbeans#yamlbeans;1.06 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of com.esotericsoftware.yamlbeans#yamlbeans;1.06 of rootConf=default
using downloadGrapes to resolve com.esotericsoftware.yamlbeans#yamlbeans;1.06
downloadGrapes: Checking cache for: dependency: com.esotericsoftware.yamlbeans#yamlbeans;1.06 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.esotericsoftware.yamlbeans/yamlbeans/ivy-1.06.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.esotericsoftware.yamlbeans#yamlbeans;1.06 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.esotericsoftware.yamlbeans/yamlbeans/ivy-1.06.xml
downloadGrapes: module revision found in cache: com.esotericsoftware.yamlbeans#yamlbeans;1.06
found com.esotericsoftware.yamlbeans#yamlbeans;1.06 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.esotericsoftware.yamlbeans#yamlbeans;1.06 [compile→compile()]
loadData of com.esotericsoftware.yamlbeans#yamlbeans;1.06 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.fasterxml.jackson.core#jackson-core;2.8.11 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.fasterxml.jackson.core#jackson-core;2.8.11 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 [compile→compile()]
loadData of org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.apache.tomcat#tomcat-juli;8.0.15 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of org.apache.tomcat#tomcat-juli;8.0.15 of rootConf=default
using downloadGrapes to resolve org.apache.tomcat#tomcat-juli;8.0.15
downloadGrapes: Checking cache for: dependency: org.apache.tomcat#tomcat-juli;8.0.15 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.tomcat/tomcat-juli/ivy-8.0.15.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.apache.tomcat#tomcat-juli;8.0.15 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.tomcat/tomcat-juli/ivy-8.0.15.xml
downloadGrapes: module revision found in cache: org.apache.tomcat#tomcat-juli;8.0.15
found org.apache.tomcat#tomcat-juli;8.0.15 in localm2
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.apache.tomcat#tomcat-juli;8.0.15 [compile→compile()]
loadData of org.apache.tomcat#tomcat-juli;8.0.15 of rootConf=default
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.google.protobuf#protobuf-java;2.6.1 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
loadData of com.google.protobuf#protobuf-java;2.6.1 of rootConf=default
using downloadGrapes to resolve com.google.protobuf#protobuf-java;2.6.1
downloadGrapes: Checking cache for: dependency: com.google.protobuf#protobuf-java;2.6.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.google.protobuf/protobuf-java/ivy-2.6.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.google.protobuf#protobuf-java;2.6.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.google.protobuf/protobuf-java/ivy-2.6.1.xml
downloadGrapes: module revision found in cache: com.google.protobuf#protobuf-java;2.6.1
found com.google.protobuf#protobuf-java;2.6.1 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.4 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.google.protobuf#protobuf-java;2.6.1 [compile→compile()]
loadData of com.google.protobuf#protobuf-java;2.6.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.4 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE→org.cloudfoundry#cloudfoundry-client-lib;1.1.3 [compile→runtime()]
loadData of org.cloudfoundry#cloudfoundry-client-lib;1.1.3 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE→org.cloudfoundry#cloudfoundry-client-lib;1.1.3 [compile→compile]
loadData of org.cloudfoundry#cloudfoundry-client-lib;1.1.3 of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-server;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-server;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlet;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlet;9.4.11.v20180605 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty#jetty-servlets;8.1.12.v20130726 {test=[runtime(), master()]} ⇒ dependency: org.eclipse.jetty#jetty-servlets;9.4.11.v20180605 {test=[runtime(), master()]}
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.springframework#spring-webmvc;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-webmvc;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.springframework#spring-webmvc;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-webmvc;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE [runtime→runtime()]
loadData of org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE of rootConf=default
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE [runtime→compile]
loadData of org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {optional=[compile(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.0.9.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.0.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.0.9.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-jwt;1.0.2.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-jwt;1.0.9.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;3.2.10.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.9 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-codec#commons-codec;1.10 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.5.0.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.6.3 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.3.2 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.3 {optional=[compile(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {optional=[compile(), master()]} ⇒ dependency: junit#junit;4.12 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-webmvc;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-webmvc;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework#spring-webmvc;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-webmvc;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework.security#spring-security-core;4.2.7.RELEASE [runtime→runtime()]
loadData of org.springframework.security#spring-security-core;4.2.7.RELEASE of rootConf=default
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework.security#spring-security-core;4.2.7.RELEASE [runtime→compile]
loadData of org.springframework.security#spring-security-core;4.2.7.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→aopalliance#aopalliance;1.0 [runtime→runtime()]
loadData of aopalliance#aopalliance;1.0 of rootConf=default
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→aopalliance#aopalliance;1.0 [runtime→compile]
loadData of aopalliance#aopalliance;1.0 of rootConf=default
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-core;4.2.7.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework.security#spring-security-config;4.2.7.RELEASE [runtime→runtime()]
loadData of org.springframework.security#spring-security-config;4.2.7.RELEASE of rootConf=default
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework.security#spring-security-config;4.2.7.RELEASE [runtime→compile]
loadData of org.springframework.security#spring-security-config;4.2.7.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.12 {optional=[compile(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-jpa;1.11.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-jpa;1.11.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→aopalliance#aopalliance;1.0 [runtime→runtime()]
loadData of aopalliance#aopalliance;1.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→aopalliance#aopalliance;1.0 [runtime→compile]
loadData of aopalliance#aopalliance;1.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework.security#spring-security-core;4.2.7.RELEASE [runtime→runtime()]
loadData of org.springframework.security#spring-security-core;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework.security#spring-security-core;4.2.7.RELEASE [runtime→compile]
loadData of org.springframework.security#spring-security-core;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-config;4.2.7.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework.security#spring-security-web;4.2.7.RELEASE [runtime→runtime()]
loadData of org.springframework.security#spring-security-web;4.2.7.RELEASE of rootConf=default
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.springframework.security#spring-security-web;4.2.7.RELEASE [runtime→compile]
loadData of org.springframework.security#spring-security-web;4.2.7.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-core;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-expression;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {optional=[compile(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.2 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.3 {test=[runtime(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.2.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.codehaus.groovy#groovy-all;2.4.4 {test=[runtime(), master()]} ⇒ dependency: org.codehaus.groovy#groovy-all;2.4.15 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.2 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-core;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-core;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.spockframework#spock-spring;0.7-groovy-2.0 {test=[runtime(), master()]} ⇒ dependency: org.spockframework#spock-spring;1.0-groovy-2.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→aopalliance#aopalliance;1.0 [runtime→runtime()]
loadData of aopalliance#aopalliance;1.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→aopalliance#aopalliance;1.0 [runtime→compile]
loadData of aopalliance#aopalliance;1.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework.security#spring-security-core;4.2.7.RELEASE [runtime→runtime()]
loadData of org.springframework.security#spring-security-core;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework.security#spring-security-core;4.2.7.RELEASE [runtime→compile]
loadData of org.springframework.security#spring-security-core;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-expression;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-expression;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security#spring-security-web;4.2.7.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→commons-codec#commons-codec;1.10 [runtime→runtime()]
loadData of commons-codec#commons-codec;1.10 of rootConf=default
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→commons-codec#commons-codec;1.10 [runtime→compile]
loadData of commons-codec#commons-codec;1.10 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.codehaus.jackson#jackson-mapper-asl;1.9.13 [runtime→runtime()]
loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.13 of rootConf=default
== resolving dependencies org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE→org.codehaus.jackson#jackson-mapper-asl;1.9.13 [runtime→compile]
loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.13 of rootConf=default
== resolving dependencies org.codehaus.jackson#jackson-mapper-asl;1.9.13→org.codehaus.jackson#jackson-core-asl;1.9.13 [runtime→runtime()]
loadData of org.codehaus.jackson#jackson-core-asl;1.9.13 of rootConf=default
== resolving dependencies org.codehaus.jackson#jackson-mapper-asl;1.9.13→org.codehaus.jackson#jackson-core-asl;1.9.13 [runtime→compile]
loadData of org.codehaus.jackson#jackson-core-asl;1.9.13 of rootConf=default
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.apache.httpcomponents#httpclient;4.5.5 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.apache.httpcomponents#httpclient;4.5.5 [runtime→compile]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→org.apache.httpcomponents#httpcore;4.4.9 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→org.apache.httpcomponents#httpcore;4.4.9 [runtime→compile]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.12 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.2 {test=[runtime(), master()]} ⇒ dependency: commons-logging#commons-logging;1.1.3 {test=[runtime(), master()]}
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→commons-logging#commons-logging;1.1.3 [runtime→runtime()]
loadData of commons-logging#commons-logging;1.1.3 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→commons-logging#commons-logging;1.2 [runtime→runtime()]
loadData of commons-logging#commons-logging;1.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→commons-logging#commons-logging;1.2 [runtime→compile]
loadData of commons-logging#commons-logging;1.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→commons-codec#commons-codec;1.10 [runtime→runtime()]
loadData of commons-codec#commons-codec;1.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.httpcomponents#httpclient;4.5.5→commons-codec#commons-codec;1.10 [runtime→compile]
loadData of commons-codec#commons-codec;1.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→commons-io#commons-io;2.1 [runtime→runtime()]
loadData of commons-io#commons-io;2.1 of rootConf=default
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→commons-io#commons-io;2.1 [runtime→compile]
loadData of commons-io#commons-io;2.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.esotericsoftware.yamlbeans#yamlbeans;1.06 [runtime→runtime()]
loadData of com.esotericsoftware.yamlbeans#yamlbeans;1.06 of rootConf=default
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.esotericsoftware.yamlbeans#yamlbeans;1.06 [runtime→compile]
loadData of com.esotericsoftware.yamlbeans#yamlbeans;1.06 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 [runtime→runtime()]
loadData of org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 [runtime→compile]
loadData of org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.apache.tomcat#tomcat-juli;8.0.15 [runtime→runtime()]
loadData of org.apache.tomcat#tomcat-juli;8.0.15 of rootConf=default
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→org.apache.tomcat#tomcat-juli;8.0.15 [runtime→compile]
loadData of org.apache.tomcat#tomcat-juli;8.0.15 of rootConf=default
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.google.protobuf#protobuf-java;2.6.1 [runtime→runtime()]
loadData of com.google.protobuf#protobuf-java;2.6.1 of rootConf=default
== resolving dependencies org.cloudfoundry#cloudfoundry-client-lib;1.1.3→com.google.protobuf#protobuf-java;2.6.1 [runtime→compile]
loadData of com.google.protobuf#protobuf-java;2.6.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.4 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE→org.cloudfoundry#cloudfoundry-client-lib;1.1.3 [runtime→runtime()]
loadData of org.cloudfoundry#cloudfoundry-client-lib;1.1.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE→org.cloudfoundry#cloudfoundry-client-lib;1.1.3 [runtime→compile]
loadData of org.cloudfoundry#cloudfoundry-client-lib;1.1.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-cloudfoundry/ivy-1.1.2.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-cloudfoundry/ivy-1.1.2.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE
found org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE in jcenter
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.security#spring-security-rsa;1.0.3.RELEASE [compile→master()]
loadData of org.springframework.security#spring-security-rsa;1.0.3.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.security#spring-security-rsa;1.0.3.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.security#spring-security-rsa;1.0.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.security/spring-security-rsa/ivy-1.0.3.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.security#spring-security-rsa;1.0.3.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.security/spring-security-rsa/ivy-1.0.3.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.security#spring-security-rsa;1.0.3.RELEASE
found org.springframework.security#spring-security-rsa;1.0.3.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-crypto;3.2.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.1.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.security#spring-security-rsa;1.0.3.RELEASE [compile→compile()]
loadData of org.springframework.security#spring-security-rsa;1.0.3.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-crypto;3.2.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.1.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.security#spring-security-rsa;1.0.3.RELEASE→org.bouncycastle#bcpkix-jdk15on;1.55 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-crypto;3.2.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.1.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-crypto;3.2.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.1.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-crypto;3.2.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.1.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-crypto;3.2.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.1.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of org.bouncycastle#bcpkix-jdk15on;1.55 of rootConf=default
using downloadGrapes to resolve org.bouncycastle#bcpkix-jdk15on;1.55
downloadGrapes: Checking cache for: dependency: org.bouncycastle#bcpkix-jdk15on;1.55 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.bouncycastle/bcpkix-jdk15on/ivy-1.55.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.bouncycastle#bcpkix-jdk15on;1.55 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.bouncycastle/bcpkix-jdk15on/ivy-1.55.xml
downloadGrapes: module revision found in cache: org.bouncycastle#bcpkix-jdk15on;1.55
found org.bouncycastle#bcpkix-jdk15on;1.55 in localm2
== resolving dependencies org.springframework.security#spring-security-rsa;1.0.3.RELEASE→org.bouncycastle#bcpkix-jdk15on;1.55 [compile→compile()]
loadData of org.bouncycastle#bcpkix-jdk15on;1.55 of rootConf=default
== resolving dependencies org.bouncycastle#bcpkix-jdk15on;1.55→org.bouncycastle#bcprov-jdk15on;1.55 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-crypto;3.2.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.1.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-crypto;3.2.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.1.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-crypto;3.2.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.1.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-crypto;3.2.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.1.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of org.bouncycastle#bcprov-jdk15on;1.55 of rootConf=default
using downloadGrapes to resolve org.bouncycastle#bcprov-jdk15on;1.55
downloadGrapes: Checking cache for: dependency: org.bouncycastle#bcprov-jdk15on;1.55 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.bouncycastle/bcprov-jdk15on/ivy-1.55.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.bouncycastle#bcprov-jdk15on;1.55 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.bouncycastle/bcprov-jdk15on/ivy-1.55.xml
downloadGrapes: module revision found in cache: org.bouncycastle#bcprov-jdk15on;1.55
found org.bouncycastle#bcprov-jdk15on;1.55 in localm2
== resolving dependencies org.bouncycastle#bcpkix-jdk15on;1.55→org.bouncycastle#bcprov-jdk15on;1.55 [compile→compile()]
loadData of org.bouncycastle#bcprov-jdk15on;1.55 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.security#spring-security-rsa;1.0.3.RELEASE [runtime→runtime()]
loadData of org.springframework.security#spring-security-rsa;1.0.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE→org.springframework.security#spring-security-rsa;1.0.3.RELEASE [runtime→compile]
loadData of org.springframework.security#spring-security-rsa;1.0.3.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-crypto;3.2.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework.security#spring-security-crypto;4.2.7.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in runtime
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.1.9.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in runtime
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.security#spring-security-rsa;1.0.3.RELEASE→org.bouncycastle#bcpkix-jdk15on;1.55 [runtime→runtime()]
loadData of org.bouncycastle#bcpkix-jdk15on;1.55 of rootConf=default
== resolving dependencies org.springframework.security#spring-security-rsa;1.0.3.RELEASE→org.bouncycastle#bcpkix-jdk15on;1.55 [runtime→compile]
loadData of org.bouncycastle#bcpkix-jdk15on;1.55 of rootConf=default
== resolving dependencies org.bouncycastle#bcpkix-jdk15on;1.55→org.bouncycastle#bcprov-jdk15on;1.55 [runtime→runtime()]
loadData of org.bouncycastle#bcprov-jdk15on;1.55 of rootConf=default
== resolving dependencies org.bouncycastle#bcpkix-jdk15on;1.55→org.bouncycastle#bcprov-jdk15on;1.55 [runtime→compile]
loadData of org.bouncycastle#bcprov-jdk15on;1.55 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE→org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-cloud-connectors/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-cloud-connectors/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE
found org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE→org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-spring-service-connector/ivy-1.2.6.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-spring-service-connector/ivy-1.2.6.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE
found org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE in localm2
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {optional=[compile(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.zaxxer#HikariCP-java6;2.1.0 {optional=[compile(), master()]} ⇒ dependency: com.zaxxer#HikariCP-java6;2.3.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-dbcp2;2.0 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-dbcp2;2.1.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;7.0.53 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mongodb#mongo-java-driver;2.11.4 {optional=[compile(), master()]} ⇒ dependency: org.mongodb#mongo-java-driver;3.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.4.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;3.1.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context-support;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context-support;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.1.0 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {optional=[compile(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.zaxxer#HikariCP-java6;2.1.0 {optional=[compile(), master()]} ⇒ dependency: com.zaxxer#HikariCP-java6;2.3.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-dbcp2;2.0 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-dbcp2;2.1.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;7.0.53 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mongodb#mongo-java-driver;2.11.4 {optional=[compile(), master()]} ⇒ dependency: org.mongodb#mongo-java-driver;3.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.4.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;3.1.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context-support;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context-support;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.1.0 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {optional=[compile(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.zaxxer#HikariCP-java6;2.1.0 {optional=[compile(), master()]} ⇒ dependency: com.zaxxer#HikariCP-java6;2.3.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-dbcp2;2.0 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-dbcp2;2.1.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;7.0.53 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mongodb#mongo-java-driver;2.11.4 {optional=[compile(), master()]} ⇒ dependency: org.mongodb#mongo-java-driver;3.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.4.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;3.1.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context-support;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context-support;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.1.0 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {optional=[compile(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.zaxxer#HikariCP-java6;2.1.0 {optional=[compile(), master()]} ⇒ dependency: com.zaxxer#HikariCP-java6;2.3.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-dbcp2;2.0 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-dbcp2;2.1.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;7.0.53 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mongodb#mongo-java-driver;2.11.4 {optional=[compile(), master()]} ⇒ dependency: org.mongodb#mongo-java-driver;3.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.4.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;3.1.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context-support;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context-support;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.1.0 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {optional=[compile(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.zaxxer#HikariCP-java6;2.1.0 {optional=[compile(), master()]} ⇒ dependency: com.zaxxer#HikariCP-java6;2.3.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-dbcp2;2.0 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-dbcp2;2.1.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;7.0.53 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mongodb#mongo-java-driver;2.11.4 {optional=[compile(), master()]} ⇒ dependency: org.mongodb#mongo-java-driver;3.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.4.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;3.1.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context-support;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context-support;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.1.0 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {optional=[compile(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.zaxxer#HikariCP-java6;2.1.0 {optional=[compile(), master()]} ⇒ dependency: com.zaxxer#HikariCP-java6;2.3.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-dbcp2;2.0 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-dbcp2;2.1.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;7.0.53 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mongodb#mongo-java-driver;2.11.4 {optional=[compile(), master()]} ⇒ dependency: org.mongodb#mongo-java-driver;3.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.4.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;3.1.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context-support;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context-support;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.1.0 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-core/ivy-1.2.6.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-core/ivy-1.2.6.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE
found org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {optional=[compile(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.zaxxer#HikariCP-java6;2.1.0 {optional=[compile(), master()]} ⇒ dependency: com.zaxxer#HikariCP-java6;2.3.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-dbcp2;2.0 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-dbcp2;2.1.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;7.0.53 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mongodb#mongo-java-driver;2.11.4 {optional=[compile(), master()]} ⇒ dependency: org.mongodb#mongo-java-driver;3.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.4.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;3.1.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context-support;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context-support;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.1.0 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {optional=[compile(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.zaxxer#HikariCP-java6;2.1.0 {optional=[compile(), master()]} ⇒ dependency: com.zaxxer#HikariCP-java6;2.3.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-dbcp2;2.0 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-dbcp2;2.1.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;7.0.53 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mongodb#mongo-java-driver;2.11.4 {optional=[compile(), master()]} ⇒ dependency: org.mongodb#mongo-java-driver;3.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.4.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;3.1.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context-support;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context-support;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.1.0 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {optional=[compile(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.zaxxer#HikariCP-java6;2.1.0 {optional=[compile(), master()]} ⇒ dependency: com.zaxxer#HikariCP-java6;2.3.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-dbcp2;2.0 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-dbcp2;2.1.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;7.0.53 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mongodb#mongo-java-driver;2.11.4 {optional=[compile(), master()]} ⇒ dependency: org.mongodb#mongo-java-driver;3.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.4.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;3.1.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context-support;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context-support;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.1.0 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {optional=[compile(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.zaxxer#HikariCP-java6;2.1.0 {optional=[compile(), master()]} ⇒ dependency: com.zaxxer#HikariCP-java6;2.3.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-dbcp2;2.0 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-dbcp2;2.1.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;7.0.53 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mongodb#mongo-java-driver;2.11.4 {optional=[compile(), master()]} ⇒ dependency: org.mongodb#mongo-java-driver;3.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.4.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;3.1.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context-support;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context-support;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.1.0 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-cloudfoundry-connector/ivy-1.2.6.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-cloudfoundry-connector/ivy-1.2.6.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE
found org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-heroku-connector/ivy-1.2.6.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-heroku-connector/ivy-1.2.6.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE
found org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-localconfig-connector/ivy-1.2.6.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-localconfig-connector/ivy-1.2.6.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE
found org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE→org.apache.commons#commons-lang3;3.3.2 [compile→master()]
loadData of org.apache.commons#commons-lang3;3.3.2 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE→org.apache.commons#commons-lang3;3.5 [compile→master()]
loadData of org.apache.commons#commons-lang3;3.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE→org.apache.commons#commons-lang3;3.3.2 [compile→compile()]
loadData of org.apache.commons#commons-lang3;3.3.2 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE→org.apache.commons#commons-lang3;3.5 [compile→compile()]
loadData of org.apache.commons#commons-lang3;3.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE→org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE [compile→runtime()]
loadData of org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE→org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE [compile→compile]
loadData of org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.datastax.cassandra#cassandra-driver-core;3.1.3 {optional=[compile(), master()]} ⇒ dependency: com.datastax.cassandra#cassandra-driver-core;3.1.4 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.zaxxer#HikariCP-java6;2.1.0 {optional=[compile(), master()]} ⇒ dependency: com.zaxxer#HikariCP-java6;2.3.13 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.commons#commons-dbcp2;2.0 {optional=[compile(), master()]} ⇒ dependency: org.apache.commons#commons-dbcp2;2.1.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;7.0.53 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.mongodb#mongo-java-driver;2.11.4 {optional=[compile(), master()]} ⇒ dependency: org.mongodb#mongo-java-driver;3.4.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.4.3.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.1.1.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;3.1.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context-support;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context-support;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;3.1.4.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: redis.clients#jedis;2.1.0 {optional=[compile(), master()]} ⇒ dependency: redis.clients#jedis;2.9.0 {optional=[compile(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE→org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE→org.apache.commons#commons-lang3;3.3.2 [runtime→runtime()]
loadData of org.apache.commons#commons-lang3;3.3.2 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE→org.apache.commons#commons-lang3;3.5 [runtime→runtime()]
loadData of org.apache.commons#commons-lang3;3.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE→org.apache.commons#commons-lang3;3.5 [runtime→compile]
loadData of org.apache.commons#commons-lang3;3.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE→org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE→org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE→org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-sleuth/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-sleuth/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE in jcenter
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-aop/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-aop/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE
found org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE→org.aspectj#aspectjweaver;1.8.13 [compile→master()]
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
loadData of org.aspectj#aspectjweaver;1.8.13 of rootConf=default
using downloadGrapes to resolve org.aspectj#aspectjweaver;1.8.13
downloadGrapes: Checking cache for: dependency: org.aspectj#aspectjweaver;1.8.13 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.aspectj/aspectjweaver/ivy-1.8.13.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.aspectj#aspectjweaver;1.8.13 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.aspectj/aspectjweaver/ivy-1.8.13.xml
downloadGrapes: module revision found in cache: org.aspectj#aspectjweaver;1.8.13
found org.aspectj#aspectjweaver;1.8.13 in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE→org.aspectj#aspectjweaver;1.8.13 [compile→compile()]
loadData of org.aspectj#aspectjweaver;1.8.13 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE [compile→runtime()]
loadData of org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE [compile→compile]
loadData of org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.assertj#assertj-core;2.6.0 {test=[runtime(), master()]} ⇒ dependency: org.assertj#assertj-core;3.8.0 {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE→org.aspectj#aspectjweaver;1.8.13 [runtime→runtime()]
loadData of org.aspectj#aspectjweaver;1.8.13 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE→org.aspectj#aspectjweaver;1.8.13 [runtime→compile]
loadData of org.aspectj#aspectjweaver;1.8.13 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-sleuth-core/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-sleuth-core/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE→org.aspectj#aspectjrt;1.8.13 [compile→master()]
loadData of org.aspectj#aspectjrt;1.8.13 of rootConf=default
using downloadGrapes to resolve org.aspectj#aspectjrt;1.8.13
downloadGrapes: Checking cache for: dependency: org.aspectj#aspectjrt;1.8.13 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.aspectj/aspectjrt/ivy-1.8.13.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.aspectj#aspectjrt;1.8.13 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.aspectj/aspectjrt/ivy-1.8.13.xml
downloadGrapes: module revision found in cache: org.aspectj#aspectjrt;1.8.13
found org.aspectj#aspectjrt;1.8.13 in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE→org.aspectj#aspectjrt;1.8.13 [compile→compile()]
loadData of org.aspectj#aspectjrt;1.8.13 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE→org.aspectj#aspectjrt;1.8.13 [runtime→runtime()]
loadData of org.aspectj#aspectjrt;1.8.13 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE→org.aspectj#aspectjrt;1.8.13 [runtime→compile]
loadData of org.aspectj#aspectjrt;1.8.13 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-zookeeper-all/ivy-1.2.2.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-zookeeper-all/ivy-1.2.2.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE
found org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE in jcenter
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-zookeeper-config/ivy-1.2.2.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-zookeeper-config/ivy-1.2.2.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE
found org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-zookeeper/ivy-1.2.2.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-zookeeper/ivy-1.2.2.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE
found org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-zookeeper-core/ivy-1.2.2.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-zookeeper-core/ivy-1.2.2.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE
found org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-zookeeper-config/ivy-1.2.2.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-zookeeper-config/ivy-1.2.2.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE
found org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.apache.curator#curator-recipes;2.11.1 [compile→master()]
loadData of org.apache.curator#curator-recipes;2.11.1 of rootConf=default
using downloadGrapes to resolve org.apache.curator#curator-recipes;2.11.1
downloadGrapes: Checking cache for: dependency: org.apache.curator#curator-recipes;2.11.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.curator/curator-recipes/ivy-2.11.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.apache.curator#curator-recipes;2.11.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.curator/curator-recipes/ivy-2.11.1.xml
downloadGrapes: module revision found in cache: org.apache.curator#curator-recipes;2.11.1
found org.apache.curator#curator-recipes;2.11.1 in localm2
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.apache.curator#curator-recipes;2.11.1 [compile→compile()]
loadData of org.apache.curator#curator-recipes;2.11.1 of rootConf=default
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.apache.curator#curator-recipes;2.11.1→org.apache.curator#curator-framework;2.11.1 [compile→master()]
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of org.apache.curator#curator-framework;2.11.1 of rootConf=default
using downloadGrapes to resolve org.apache.curator#curator-framework;2.11.1
downloadGrapes: Checking cache for: dependency: org.apache.curator#curator-framework;2.11.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.curator/curator-framework/ivy-2.11.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.apache.curator#curator-framework;2.11.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.curator/curator-framework/ivy-2.11.1.xml
downloadGrapes: module revision found in cache: org.apache.curator#curator-framework;2.11.1
found org.apache.curator#curator-framework;2.11.1 in localm2
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.apache.curator#curator-recipes;2.11.1→org.apache.curator#curator-framework;2.11.1 [compile→compile()]
loadData of org.apache.curator#curator-framework;2.11.1 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.apache.curator#curator-framework;2.11.1→org.apache.curator#curator-client;2.11.1 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of org.apache.curator#curator-client;2.11.1 of rootConf=default
using downloadGrapes to resolve org.apache.curator#curator-client;2.11.1
downloadGrapes: Checking cache for: dependency: org.apache.curator#curator-client;2.11.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.curator/curator-client/ivy-2.11.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.apache.curator#curator-client;2.11.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.curator/curator-client/ivy-2.11.1.xml
downloadGrapes: module revision found in cache: org.apache.curator#curator-client;2.11.1
found org.apache.curator#curator-client;2.11.1 in localm2
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.apache.curator#curator-framework;2.11.1→org.apache.curator#curator-client;2.11.1 [compile→compile()]
loadData of org.apache.curator#curator-client;2.11.1 of rootConf=default
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.apache.curator#curator-client;2.11.1→org.apache.zookeeper#zookeeper;3.4.8 [compile→master()]
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of org.apache.zookeeper#zookeeper;3.4.8 of rootConf=default
using downloadGrapes to resolve org.apache.zookeeper#zookeeper;3.4.8
downloadGrapes: Checking cache for: dependency: org.apache.zookeeper#zookeeper;3.4.8 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.zookeeper/zookeeper/ivy-3.4.8.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.apache.zookeeper#zookeeper;3.4.8 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.zookeeper/zookeeper/ivy-3.4.8.xml
downloadGrapes: module revision found in cache: org.apache.zookeeper#zookeeper;3.4.8
found org.apache.zookeeper#zookeeper;3.4.8 in localm2
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.apache.curator#curator-client;2.11.1→org.apache.zookeeper#zookeeper;3.4.8 [compile→compile()]
loadData of org.apache.zookeeper#zookeeper;3.4.8 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]} in compile
excluding dependency: log4j#log4j;1.2.16 {compile=[compile(), master()], runtime=[runtime()]} in compile
excluding dependency: io.netty#netty;3.7.0.Final {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: junit#junit;4.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.apache.zookeeper#zookeeper;3.4.8→org.slf4j#slf4j-api;1.7.25 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]} in compile
excluding dependency: log4j#log4j;1.2.16 {compile=[compile(), master()], runtime=[runtime()]} in compile
excluding dependency: io.netty#netty;3.7.0.Final {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: junit#junit;4.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.zookeeper#zookeeper;3.4.8→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.zookeeper#zookeeper;3.4.8→jline#jline;0.9.94 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]} in compile
excluding dependency: log4j#log4j;1.2.16 {compile=[compile(), master()], runtime=[runtime()]} in compile
excluding dependency: io.netty#netty;3.7.0.Final {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: junit#junit;4.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of jline#jline;0.9.94 of rootConf=default
using downloadGrapes to resolve jline#jline;0.9.94
downloadGrapes: Checking cache for: dependency: jline#jline;0.9.94 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/jline/jline/ivy-0.9.94.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for jline#jline;0.9.94 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/jline/jline/ivy-0.9.94.xml
downloadGrapes: module revision found in cache: jline#jline;0.9.94
found jline#jline;0.9.94 in localm2
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: junit#junit;4.12 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.apache.zookeeper#zookeeper;3.4.8→jline#jline;0.9.94 [compile→compile()]
loadData of jline#jline;0.9.94 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: junit#junit;4.12 {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: junit#junit;4.12 {compile=[compile(), master()], runtime=[runtime()]} in compile
== resolving dependencies org.apache.curator#curator-client;2.11.1→com.google.guava#guava;18.0 [compile→master()]
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of com.google.guava#guava;18.0 of rootConf=default
using downloadGrapes to resolve com.google.guava#guava;18.0
downloadGrapes: Checking cache for: dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.google.guava/guava/ivy-18.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.google.guava#guava;18.0 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.google.guava/guava/ivy-18.0.xml
downloadGrapes: module revision found in cache: com.google.guava#guava;18.0
found com.google.guava#guava;18.0 in localm2
== resolving dependencies org.apache.curator#curator-client;2.11.1→com.google.guava#guava;18.0 [compile→compile()]
loadData of com.google.guava#guava;18.0 of rootConf=default
== resolving dependencies org.apache.curator#curator-client;2.11.1→org.slf4j#slf4j-api;1.7.25 [compile→master()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.curator#curator-client;2.11.1→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.apache.curator#curator-recipes;2.11.1 [runtime→runtime()]
loadData of org.apache.curator#curator-recipes;2.11.1 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE→org.apache.curator#curator-recipes;2.11.1 [runtime→compile]
loadData of org.apache.curator#curator-recipes;2.11.1 of rootConf=default
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.apache.curator#curator-recipes;2.11.1→org.apache.curator#curator-framework;2.11.1 [runtime→runtime()]
loadData of org.apache.curator#curator-framework;2.11.1 of rootConf=default
== resolving dependencies org.apache.curator#curator-recipes;2.11.1→org.apache.curator#curator-framework;2.11.1 [runtime→compile]
loadData of org.apache.curator#curator-framework;2.11.1 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.apache.curator#curator-framework;2.11.1→org.apache.curator#curator-client;2.11.1 [runtime→runtime()]
loadData of org.apache.curator#curator-client;2.11.1 of rootConf=default
== resolving dependencies org.apache.curator#curator-framework;2.11.1→org.apache.curator#curator-client;2.11.1 [runtime→compile]
loadData of org.apache.curator#curator-client;2.11.1 of rootConf=default
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.9.5 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.apache.curator#curator-client;2.11.1→org.apache.zookeeper#zookeeper;3.4.8 [runtime→runtime()]
loadData of org.apache.zookeeper#zookeeper;3.4.8 of rootConf=default
== resolving dependencies org.apache.curator#curator-client;2.11.1→org.apache.zookeeper#zookeeper;3.4.8 [runtime→compile]
loadData of org.apache.zookeeper#zookeeper;3.4.8 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.6.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.slf4j#slf4j-log4j12;1.7.25 {compile=[compile(), master()], runtime=[runtime()]} in runtime
excluding dependency: log4j#log4j;1.2.16 {compile=[compile(), master()], runtime=[runtime()]} in runtime
excluding dependency: io.netty#netty;3.7.0.Final {compile=[compile(), master()], runtime=[runtime()]} in runtime
dependency descriptor has been mediated: dependency: junit#junit;4.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.apache.zookeeper#zookeeper;3.4.8→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.zookeeper#zookeeper;3.4.8→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.zookeeper#zookeeper;3.4.8→jline#jline;0.9.94 [runtime→runtime()]
loadData of jline#jline;0.9.94 of rootConf=default
== resolving dependencies org.apache.zookeeper#zookeeper;3.4.8→jline#jline;0.9.94 [runtime→compile]
loadData of jline#jline;0.9.94 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: junit#junit;4.12 {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: junit#junit;4.12 {compile=[compile(), master()], runtime=[runtime()]} in runtime
== resolving dependencies org.apache.curator#curator-client;2.11.1→com.google.guava#guava;18.0 [runtime→runtime()]
loadData of com.google.guava#guava;18.0 of rootConf=default
== resolving dependencies org.apache.curator#curator-client;2.11.1→com.google.guava#guava;18.0 [runtime→compile]
loadData of com.google.guava#guava;18.0 of rootConf=default
== resolving dependencies org.apache.curator#curator-client;2.11.1→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.curator#curator-client;2.11.1→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-zookeeper-discovery/ivy-1.2.2.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-zookeeper-discovery/ivy-1.2.2.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE
found org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-zookeeper-discovery/ivy-1.2.2.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-zookeeper-discovery/ivy-1.2.2.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE
found org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.apache.curator#curator-x-discovery;2.11.1 [compile→master()]
loadData of org.apache.curator#curator-x-discovery;2.11.1 of rootConf=default
using downloadGrapes to resolve org.apache.curator#curator-x-discovery;2.11.1
downloadGrapes: Checking cache for: dependency: org.apache.curator#curator-x-discovery;2.11.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.curator/curator-x-discovery/ivy-2.11.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.apache.curator#curator-x-discovery;2.11.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.curator/curator-x-discovery/ivy-2.11.1.xml
downloadGrapes: module revision found in cache: org.apache.curator#curator-x-discovery;2.11.1
found org.apache.curator#curator-x-discovery;2.11.1 in localm2
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.apache.curator#curator-x-discovery;2.11.1 [compile→compile()]
loadData of org.apache.curator#curator-x-discovery;2.11.1 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.apache.curator#curator-x-discovery;2.11.1→org.apache.curator#curator-recipes;2.11.1 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of org.apache.curator#curator-recipes;2.11.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.curator#curator-x-discovery;2.11.1→org.apache.curator#curator-recipes;2.11.1 [compile→compile()]
loadData of org.apache.curator#curator-recipes;2.11.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.curator#curator-x-discovery;2.11.1→org.codehaus.jackson#jackson-mapper-asl;1.9.13 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.13 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.curator#curator-x-discovery;2.11.1→org.codehaus.jackson#jackson-mapper-asl;1.9.13 [compile→compile()]
loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.13 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-netflix-core/ivy-1.4.5.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-netflix-core/ivy-1.4.5.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE
found org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE in localm2
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.7.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.8.11 {optional=[compile(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.7.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.8.11 {optional=[compile(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.7.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.8.11 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.7.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.8.11 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.7.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.8.11 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.7.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.8.11 {optional=[compile(), master()]}
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.7.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.8.11 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.7.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.8.11 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.7.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.8.11 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.7.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.8.11 {optional=[compile(), master()]}
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-archaius/ivy-1.4.5.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-archaius/ivy-1.4.5.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE
found org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-netflix-archaius/ivy-1.4.5.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-netflix-archaius/ivy-1.4.5.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE
found org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.netflix.archaius#archaius-core;0.7.4 [compile→master()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
using downloadGrapes to resolve com.netflix.archaius#archaius-core;0.7.4
downloadGrapes: Checking cache for: dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.archaius/archaius-core/ivy-0.7.4.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.archaius#archaius-core;0.7.4 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.archaius/archaius-core/ivy-0.7.4.xml
downloadGrapes: module revision found in cache: com.netflix.archaius#archaius-core;0.7.4
found com.netflix.archaius#archaius-core;0.7.4 in localm2
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.netflix.archaius#archaius-core;0.7.4 [compile→compile()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→commons-configuration#commons-configuration;1.8 [compile→master()]
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
using downloadGrapes to resolve commons-configuration#commons-configuration;1.8
downloadGrapes: Checking cache for: dependency: commons-configuration#commons-configuration;1.8 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/commons-configuration/commons-configuration/ivy-1.8.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for commons-configuration#commons-configuration;1.8 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/commons-configuration/commons-configuration/ivy-1.8.xml
downloadGrapes: module revision found in cache: commons-configuration#commons-configuration;1.8
found commons-configuration#commons-configuration;1.8 in localm2
dependency descriptor has been mediated: dependency: commons-collections#commons-collections;3.2.1 {optional=[compile(), master()]} ⇒ dependency: commons-collections#commons-collections;3.2.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-digester#commons-digester;1.8.1 {optional=[compile(), master()]} ⇒ dependency: commons-digester#commons-digester;2.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-beanutils#commons-beanutils;1.8.3 {optional=[compile(), master()]} ⇒ dependency: commons-beanutils#commons-beanutils;1.9.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.5 {optional=[compile(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: xml-apis#xml-apis;1.0.b2 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: xml-apis#xml-apis;1.4.01 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-dbcp#commons-dbcp;1.2.2 {test=[runtime(), master()]} ⇒ dependency: commons-dbcp#commons-dbcp;1.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-pool#commons-pool;1.4 {test=[runtime(), master()]} ⇒ dependency: commons-pool#commons-pool;1.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→commons-configuration#commons-configuration;1.8 [compile→compile()]
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
dependency descriptor has been mediated: dependency: commons-collections#commons-collections;3.2.1 {optional=[compile(), master()]} ⇒ dependency: commons-collections#commons-collections;3.2.2 {optional=[compile(), master()]}
excluding dependency: commons-logging#commons-logging;1.1.1 {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: commons-digester#commons-digester;1.8.1 {optional=[compile(), master()]} ⇒ dependency: commons-digester#commons-digester;2.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-beanutils#commons-beanutils;1.8.3 {optional=[compile(), master()]} ⇒ dependency: commons-beanutils#commons-beanutils;1.9.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.5 {optional=[compile(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: xml-apis#xml-apis;1.0.b2 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: xml-apis#xml-apis;1.4.01 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-dbcp#commons-dbcp;1.2.2 {test=[runtime(), master()]} ⇒ dependency: commons-dbcp#commons-dbcp;1.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-pool#commons-pool;1.4 {test=[runtime(), master()]} ⇒ dependency: commons-pool#commons-pool;1.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies commons-configuration#commons-configuration;1.8→commons-lang#commons-lang;2.6 [compile→master()]
dependency descriptor has been mediated: dependency: commons-collections#commons-collections;3.2.1 {optional=[compile(), master()]} ⇒ dependency: commons-collections#commons-collections;3.2.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-digester#commons-digester;1.8.1 {optional=[compile(), master()]} ⇒ dependency: commons-digester#commons-digester;2.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-beanutils#commons-beanutils;1.8.3 {optional=[compile(), master()]} ⇒ dependency: commons-beanutils#commons-beanutils;1.9.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.5 {optional=[compile(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: xml-apis#xml-apis;1.0.b2 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: xml-apis#xml-apis;1.4.01 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-dbcp#commons-dbcp;1.2.2 {test=[runtime(), master()]} ⇒ dependency: commons-dbcp#commons-dbcp;1.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-pool#commons-pool;1.4 {test=[runtime(), master()]} ⇒ dependency: commons-pool#commons-pool;1.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-collections#commons-collections;3.2.1 {optional=[compile(), master()]} ⇒ dependency: commons-collections#commons-collections;3.2.2 {optional=[compile(), master()]}
excluding dependency: commons-logging#commons-logging;1.1.1 {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: commons-digester#commons-digester;1.8.1 {optional=[compile(), master()]} ⇒ dependency: commons-digester#commons-digester;2.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-beanutils#commons-beanutils;1.8.3 {optional=[compile(), master()]} ⇒ dependency: commons-beanutils#commons-beanutils;1.9.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.5 {optional=[compile(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: xml-apis#xml-apis;1.0.b2 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: xml-apis#xml-apis;1.4.01 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-dbcp#commons-dbcp;1.2.2 {test=[runtime(), master()]} ⇒ dependency: commons-dbcp#commons-dbcp;1.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-pool#commons-pool;1.4 {test=[runtime(), master()]} ⇒ dependency: commons-pool#commons-pool;1.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-collections#commons-collections;3.2.1 {optional=[compile(), master()]} ⇒ dependency: commons-collections#commons-collections;3.2.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-digester#commons-digester;1.8.1 {optional=[compile(), master()]} ⇒ dependency: commons-digester#commons-digester;2.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-beanutils#commons-beanutils;1.8.3 {optional=[compile(), master()]} ⇒ dependency: commons-beanutils#commons-beanutils;1.9.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.5 {optional=[compile(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: xml-apis#xml-apis;1.0.b2 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: xml-apis#xml-apis;1.4.01 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-dbcp#commons-dbcp;1.2.2 {test=[runtime(), master()]} ⇒ dependency: commons-dbcp#commons-dbcp;1.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-pool#commons-pool;1.4 {test=[runtime(), master()]} ⇒ dependency: commons-pool#commons-pool;1.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-collections#commons-collections;3.2.1 {optional=[compile(), master()]} ⇒ dependency: commons-collections#commons-collections;3.2.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-digester#commons-digester;1.8.1 {optional=[compile(), master()]} ⇒ dependency: commons-digester#commons-digester;2.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-beanutils#commons-beanutils;1.8.3 {optional=[compile(), master()]} ⇒ dependency: commons-beanutils#commons-beanutils;1.9.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.5 {optional=[compile(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: xml-apis#xml-apis;1.0.b2 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: xml-apis#xml-apis;1.4.01 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-dbcp#commons-dbcp;1.2.2 {test=[runtime(), master()]} ⇒ dependency: commons-dbcp#commons-dbcp;1.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-pool#commons-pool;1.4 {test=[runtime(), master()]} ⇒ dependency: commons-pool#commons-pool;1.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of commons-lang#commons-lang;2.6 of rootConf=default
using downloadGrapes to resolve commons-lang#commons-lang;2.6
downloadGrapes: Checking cache for: dependency: commons-lang#commons-lang;2.6 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/commons-lang/commons-lang/ivy-2.6.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for commons-lang#commons-lang;2.6 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/commons-lang/commons-lang/ivy-2.6.xml
downloadGrapes: module revision found in cache: commons-lang#commons-lang;2.6
found commons-lang#commons-lang;2.6 in localm2
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies commons-configuration#commons-configuration;1.8→commons-lang#commons-lang;2.6 [compile→compile()]
loadData of commons-lang#commons-lang;2.6 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [compile→master()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.fasterxml.jackson.core#jackson-core;2.8.11 [compile→master()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.fasterxml.jackson.core#jackson-core;2.8.11 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→master()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.google.guava#guava;18.0 [compile→master()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.google.guava#guava;18.0 [compile→compile()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon;2.2.5 [compile→master()]
loadData of com.netflix.ribbon#ribbon;2.2.5 of rootConf=default
using downloadGrapes to resolve com.netflix.ribbon#ribbon;2.2.5
downloadGrapes: Checking cache for: dependency: com.netflix.ribbon#ribbon;2.2.5 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.ribbon/ribbon/ivy-2.2.5.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.ribbon#ribbon;2.2.5 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.ribbon/ribbon/ivy-2.2.5.xml
downloadGrapes: module revision found in cache: com.netflix.ribbon#ribbon;2.2.5
found com.netflix.ribbon#ribbon;2.2.5 in localm2
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon;2.2.5 [compile→compile()]
loadData of com.netflix.ribbon#ribbon;2.2.5 of rootConf=default
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon-core;2.2.5 [compile→master()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
using downloadGrapes to resolve com.netflix.ribbon#ribbon-core;2.2.5
downloadGrapes: Checking cache for: dependency: com.netflix.ribbon#ribbon-core;2.2.5 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.ribbon/ribbon-core/ivy-2.2.5.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.ribbon#ribbon-core;2.2.5 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.ribbon/ribbon-core/ivy-2.2.5.xml
downloadGrapes: module revision found in cache: com.netflix.ribbon#ribbon-core;2.2.5
found com.netflix.ribbon#ribbon-core;2.2.5 in localm2
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon-core;2.2.5 [compile→compile()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon-httpclient;2.2.5 [compile→master()]
loadData of com.netflix.ribbon#ribbon-httpclient;2.2.5 of rootConf=default
using downloadGrapes to resolve com.netflix.ribbon#ribbon-httpclient;2.2.5
downloadGrapes: Checking cache for: dependency: com.netflix.ribbon#ribbon-httpclient;2.2.5 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.ribbon/ribbon-httpclient/ivy-2.2.5.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.ribbon#ribbon-httpclient;2.2.5 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.ribbon/ribbon-httpclient/ivy-2.2.5.xml
downloadGrapes: module revision found in cache: com.netflix.ribbon#ribbon-httpclient;2.2.5
found com.netflix.ribbon#ribbon-httpclient;2.2.5 in localm2
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon-httpclient;2.2.5 [compile→compile()]
loadData of com.netflix.ribbon#ribbon-httpclient;2.2.5 of rootConf=default
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [compile→master()]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
using downloadGrapes to resolve com.netflix.ribbon#ribbon-loadbalancer;2.2.5
downloadGrapes: Checking cache for: dependency: com.netflix.ribbon#ribbon-loadbalancer;2.2.5 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.ribbon/ribbon-loadbalancer/ivy-2.2.5.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.ribbon#ribbon-loadbalancer;2.2.5 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.ribbon/ribbon-loadbalancer/ivy-2.2.5.xml
downloadGrapes: module revision found in cache: com.netflix.ribbon#ribbon-loadbalancer;2.2.5
found com.netflix.ribbon#ribbon-loadbalancer;2.2.5 in localm2
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [compile→compile()]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.apache.curator#curator-x-discovery;2.11.1 [runtime→runtime()]
loadData of org.apache.curator#curator-x-discovery;2.11.1 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.apache.curator#curator-x-discovery;2.11.1 [runtime→compile]
loadData of org.apache.curator#curator-x-discovery;2.11.1 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies org.apache.curator#curator-x-discovery;2.11.1→org.apache.curator#curator-recipes;2.11.1 [runtime→runtime()]
loadData of org.apache.curator#curator-recipes;2.11.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.curator#curator-x-discovery;2.11.1→org.apache.curator#curator-recipes;2.11.1 [runtime→compile]
loadData of org.apache.curator#curator-recipes;2.11.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.curator#curator-x-discovery;2.11.1→org.codehaus.jackson#jackson-mapper-asl;1.9.13 [runtime→runtime()]
loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.13 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.apache.curator#curator-x-discovery;2.11.1→org.codehaus.jackson#jackson-mapper-asl;1.9.13 [runtime→compile]
loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.13 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.7.3 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-smile;2.8.11 {optional=[compile(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.netflix.archaius#archaius-core;0.7.4 [runtime→runtime()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.google.code.findbugs#jsr305;3.0.1 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
loadData of com.google.code.findbugs#jsr305;3.0.1 of rootConf=default
using downloadGrapes to resolve com.google.code.findbugs#jsr305;3.0.1
downloadGrapes: Checking cache for: dependency: com.google.code.findbugs#jsr305;3.0.1 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.google.code.findbugs/jsr305/ivy-3.0.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.google.code.findbugs#jsr305;3.0.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.google.code.findbugs/jsr305/ivy-3.0.1.xml
downloadGrapes: module revision found in cache: com.google.code.findbugs#jsr305;3.0.1
found com.google.code.findbugs#jsr305;3.0.1 in localm2
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.google.code.findbugs#jsr305;3.0.1 [runtime→runtime()]
loadData of com.google.code.findbugs#jsr305;3.0.1 of rootConf=default
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.google.code.findbugs#jsr305;3.0.1 [runtime→compile]
loadData of com.google.code.findbugs#jsr305;3.0.1 of rootConf=default
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.google.code.findbugs#jsr305;3.0.1 [runtime→compile()]
loadData of com.google.code.findbugs#jsr305;3.0.1 of rootConf=default
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→commons-configuration#commons-configuration;1.8 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→commons-configuration#commons-configuration;1.8 [runtime→runtime()]
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→commons-configuration#commons-configuration;1.8 [runtime→compile]
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
dependency descriptor has been mediated: dependency: commons-collections#commons-collections;3.2.1 {optional=[compile(), master()]} ⇒ dependency: commons-collections#commons-collections;3.2.2 {optional=[compile(), master()]}
excluding dependency: commons-logging#commons-logging;1.1.1 {compile=[compile(), master()], runtime=[runtime()]} in runtime
dependency descriptor has been mediated: dependency: commons-digester#commons-digester;1.8.1 {optional=[compile(), master()]} ⇒ dependency: commons-digester#commons-digester;2.1 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-beanutils#commons-beanutils;1.8.3 {optional=[compile(), master()]} ⇒ dependency: commons-beanutils#commons-beanutils;1.9.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: commons-codec#commons-codec;1.5 {optional=[compile(), master()]} ⇒ dependency: commons-codec#commons-codec;1.10 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: xml-apis#xml-apis;1.0.b2 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: xml-apis#xml-apis;1.4.01 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-dbcp#commons-dbcp;1.2.2 {test=[runtime(), master()]} ⇒ dependency: commons-dbcp#commons-dbcp;1.4 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-pool#commons-pool;1.4 {test=[runtime(), master()]} ⇒ dependency: commons-pool#commons-pool;1.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-ext;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-ext;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.5.6 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies commons-configuration#commons-configuration;1.8→commons-lang#commons-lang;2.6 [runtime→runtime()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
loadData of commons-lang#commons-lang;2.6 of rootConf=default
== resolving dependencies commons-configuration#commons-configuration;1.8→commons-lang#commons-lang;2.6 [runtime→compile]
loadData of commons-lang#commons-lang;2.6 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→commons-configuration#commons-configuration;1.8 [runtime→compile()]
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→org.slf4j#slf4j-api;1.7.25 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→org.slf4j#slf4j-api;1.7.25 [runtime→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.google.guava#guava;18.0 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.google.guava#guava;18.0 [runtime→runtime()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.google.guava#guava;18.0 [runtime→compile]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.google.guava#guava;18.0 [runtime→compile()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→compile()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→compile()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.archaius#archaius-core;0.7.4→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→commons-configuration#commons-configuration;1.8 [runtime→runtime()]
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→commons-configuration#commons-configuration;1.8 [runtime→compile]
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.google.guava#guava;18.0 [runtime→runtime()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE→com.google.guava#guava;18.0 [runtime→compile]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon;2.2.5 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon;2.2.5 of rootConf=default
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→master()]
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→com.google.code.findbugs#annotations;2.0.0 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
using downloadGrapes to resolve com.google.code.findbugs#annotations;2.0.0
downloadGrapes: Checking cache for: dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.google.code.findbugs/annotations/ivy-2.0.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.google.code.findbugs#annotations;2.0.0 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.google.code.findbugs/annotations/ivy-2.0.0.xml
downloadGrapes: module revision found in cache: com.google.code.findbugs#annotations;2.0.0
found com.google.code.findbugs#annotations;2.0.0 in localm2
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→com.google.code.findbugs#annotations;2.0.0 [runtime→runtime()]
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→com.google.code.findbugs#annotations;2.0.0 [runtime→compile]
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→com.google.code.findbugs#annotations;2.0.0 [runtime→compile()]
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→com.google.guava#guava;18.0 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→com.google.guava#guava;18.0 [runtime→runtime()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→com.google.guava#guava;18.0 [runtime→compile]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→com.google.guava#guava;18.0 [runtime→compile()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→commons-configuration#commons-configuration;1.8 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→commons-configuration#commons-configuration;1.8 [runtime→runtime()]
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→commons-configuration#commons-configuration;1.8 [runtime→compile]
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→commons-configuration#commons-configuration;1.8 [runtime→compile()]
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→commons-lang#commons-lang;2.6 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of commons-lang#commons-lang;2.6 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→commons-lang#commons-lang;2.6 [runtime→runtime()]
loadData of commons-lang#commons-lang;2.6 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→commons-lang#commons-lang;2.6 [runtime→compile]
loadData of commons-lang#commons-lang;2.6 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→commons-lang#commons-lang;2.6 [runtime→compile()]
loadData of commons-lang#commons-lang;2.6 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→runtime()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-core;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→compile()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.ribbon#ribbon-transport;2.2.5 [runtime→master()]
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of com.netflix.ribbon#ribbon-transport;2.2.5 of rootConf=default
using downloadGrapes to resolve com.netflix.ribbon#ribbon-transport;2.2.5
downloadGrapes: Checking cache for: dependency: com.netflix.ribbon#ribbon-transport;2.2.5 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.ribbon/ribbon-transport/ivy-2.2.5.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.ribbon#ribbon-transport;2.2.5 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.ribbon/ribbon-transport/ivy-2.2.5.xml
downloadGrapes: module revision found in cache: com.netflix.ribbon#ribbon-transport;2.2.5
found com.netflix.ribbon#ribbon-transport;2.2.5 in localm2
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.ribbon#ribbon-transport;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-transport;2.2.5 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.ribbon#ribbon-transport;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-transport;2.2.5 of rootConf=default
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→compile()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→compile()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.netflix-commons#netflix-statistics;0.1.1 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of com.netflix.netflix-commons#netflix-statistics;0.1.1 of rootConf=default
using downloadGrapes to resolve com.netflix.netflix-commons#netflix-statistics;0.1.1
downloadGrapes: Checking cache for: dependency: com.netflix.netflix-commons#netflix-statistics;0.1.1 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.netflix-commons/netflix-statistics/ivy-0.1.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.netflix-commons#netflix-statistics;0.1.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.netflix-commons/netflix-statistics/ivy-0.1.1.xml
downloadGrapes: module revision found in cache: com.netflix.netflix-commons#netflix-statistics;0.1.1
found com.netflix.netflix-commons#netflix-statistics;0.1.1 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.netflix-commons#netflix-statistics;0.1.1 [runtime→runtime()]
loadData of com.netflix.netflix-commons#netflix-statistics;0.1.1 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.netflix-commons#netflix-statistics;0.1.1 [runtime→compile]
loadData of com.netflix.netflix-commons#netflix-statistics;0.1.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.netflix.netflix-commons#netflix-statistics;0.1.1→org.slf4j#slf4j-api;1.7.25 [compile→master()]
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-statistics;0.1.1→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-statistics;0.1.1→com.google.code.findbugs#annotations;2.0.0 [compile→master()]
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-statistics;0.1.1→com.google.code.findbugs#annotations;2.0.0 [compile→compile()]
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
default is loaded and no conf to load. Skip loading
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.netflix.netflix-commons#netflix-statistics;0.1.1→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-statistics;0.1.1→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-statistics;0.1.1→com.google.code.findbugs#annotations;2.0.0 [runtime→runtime()]
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-statistics;0.1.1→com.google.code.findbugs#annotations;2.0.0 [runtime→compile]
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.netflix-commons#netflix-statistics;0.1.1 [runtime→compile()]
loadData of com.netflix.netflix-commons#netflix-statistics;0.1.1 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→io.reactivex#rxjava;1.2.0 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
using downloadGrapes to resolve io.reactivex#rxjava;1.2.0
downloadGrapes: Checking cache for: dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/io.reactivex/rxjava/ivy-1.2.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for io.reactivex#rxjava;1.2.0 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/io.reactivex/rxjava/ivy-1.2.0.xml
downloadGrapes: module revision found in cache: io.reactivex#rxjava;1.2.0
found io.reactivex#rxjava;1.2.0 in localm2
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→io.reactivex#rxjava;1.2.0 [runtime→runtime()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→io.reactivex#rxjava;1.2.0 [runtime→compile]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→io.reactivex#rxjava;1.2.0 [runtime→compile()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→master()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.servo#servo-core;0.10.1 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
using downloadGrapes to resolve com.netflix.servo#servo-core;0.10.1
downloadGrapes: Checking cache for: dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.servo/servo-core/ivy-0.10.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.servo#servo-core;0.10.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.servo/servo-core/ivy-0.10.1.xml
downloadGrapes: module revision found in cache: com.netflix.servo#servo-core;0.10.1
found com.netflix.servo#servo-core;0.10.1 in localm2
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.servo#servo-core;0.10.1 [runtime→runtime()]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.servo#servo-core;0.10.1 [runtime→compile]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.servo#servo-core;0.10.1→org.slf4j#slf4j-api;1.7.25 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-core;0.10.1→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-core;0.10.1→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-core;0.10.1→org.slf4j#slf4j-api;1.7.25 [runtime→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-core;0.10.1→com.google.guava#guava;18.0 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-core;0.10.1→com.google.guava#guava;18.0 [runtime→runtime()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-core;0.10.1→com.google.guava#guava;18.0 [runtime→compile]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-core;0.10.1→com.google.guava#guava;18.0 [runtime→compile()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-core;0.10.1→com.google.code.findbugs#annotations;2.0.0 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-core;0.10.1→com.google.code.findbugs#annotations;2.0.0 [runtime→runtime()]
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-core;0.10.1→com.google.code.findbugs#annotations;2.0.0 [runtime→compile]
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-core;0.10.1→com.google.code.findbugs#annotations;2.0.0 [runtime→compile()]
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-core;0.10.1→com.netflix.servo#servo-internal;0.10.1 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of com.netflix.servo#servo-internal;0.10.1 of rootConf=default
using downloadGrapes to resolve com.netflix.servo#servo-internal;0.10.1
downloadGrapes: Checking cache for: dependency: com.netflix.servo#servo-internal;0.10.1 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.servo/servo-internal/ivy-0.10.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.servo#servo-internal;0.10.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.servo/servo-internal/ivy-0.10.1.xml
downloadGrapes: module revision found in cache: com.netflix.servo#servo-internal;0.10.1
found com.netflix.servo#servo-internal;0.10.1 in localm2
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.servo#servo-core;0.10.1→com.netflix.servo#servo-internal;0.10.1 [runtime→runtime()]
loadData of com.netflix.servo#servo-internal;0.10.1 of rootConf=default
== resolving dependencies com.netflix.servo#servo-core;0.10.1→com.netflix.servo#servo-internal;0.10.1 [runtime→compile]
loadData of com.netflix.servo#servo-internal;0.10.1 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.servo#servo-internal;0.10.1→org.slf4j#slf4j-api;1.7.25 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-internal;0.10.1→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-internal;0.10.1→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-internal;0.10.1→org.slf4j#slf4j-api;1.7.25 [runtime→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-internal;0.10.1→com.google.guava#guava;18.0 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-internal;0.10.1→com.google.guava#guava;18.0 [runtime→runtime()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-internal;0.10.1→com.google.guava#guava;18.0 [runtime→compile]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-internal;0.10.1→com.google.guava#guava;18.0 [runtime→compile()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-internal;0.10.1→com.google.code.findbugs#annotations;2.0.0 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-internal;0.10.1→com.google.code.findbugs#annotations;2.0.0 [runtime→runtime()]
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-internal;0.10.1→com.google.code.findbugs#annotations;2.0.0 [runtime→compile]
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-internal;0.10.1→com.google.code.findbugs#annotations;2.0.0 [runtime→compile()]
loadData of com.google.code.findbugs#annotations;2.0.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.servo#servo-core;0.10.1→com.netflix.servo#servo-internal;0.10.1 [runtime→compile()]
loadData of com.netflix.servo#servo-internal;0.10.1 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.servo#servo-core;0.10.1 [runtime→compile()]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.google.guava#guava;18.0 [runtime→master()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.google.guava#guava;18.0 [runtime→runtime()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.google.guava#guava;18.0 [runtime→compile]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.google.guava#guava;18.0 [runtime→compile()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→runtime()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.netflix-commons#netflix-commons-util;0.1.1 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of com.netflix.netflix-commons#netflix-commons-util;0.1.1 of rootConf=default
using downloadGrapes to resolve com.netflix.netflix-commons#netflix-commons-util;0.1.1
downloadGrapes: Checking cache for: dependency: com.netflix.netflix-commons#netflix-commons-util;0.1.1 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.netflix-commons/netflix-commons-util/ivy-0.1.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.netflix-commons#netflix-commons-util;0.1.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.netflix-commons/netflix-commons-util/ivy-0.1.1.xml
downloadGrapes: module revision found in cache: com.netflix.netflix-commons#netflix-commons-util;0.1.1
found com.netflix.netflix-commons#netflix-commons-util;0.1.1 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.netflix-commons#netflix-commons-util;0.1.1 [runtime→runtime()]
loadData of com.netflix.netflix-commons#netflix-commons-util;0.1.1 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.netflix-commons#netflix-commons-util;0.1.1 [runtime→compile]
loadData of com.netflix.netflix-commons#netflix-commons-util;0.1.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.netflix.netflix-commons#netflix-commons-util;0.1.1→org.slf4j#slf4j-api;1.7.25 [compile→master()]
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-commons-util;0.1.1→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.netflix.netflix-commons#netflix-commons-util;0.1.1→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-commons-util;0.1.1→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-loadbalancer;2.2.5→com.netflix.netflix-commons#netflix-commons-util;0.1.1 [runtime→compile()]
loadData of com.netflix.netflix-commons#netflix-commons-util;0.1.1 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→compile()]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxjava;1.2.0 [runtime→master()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxjava;1.2.0 [runtime→runtime()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxjava;1.2.0 [runtime→compile]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxjava;1.2.0 [runtime→compile()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxnetty;0.4.9 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
using downloadGrapes to resolve io.reactivex#rxnetty;0.4.9
downloadGrapes: Checking cache for: dependency: io.reactivex#rxnetty;0.4.9 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/io.reactivex/rxnetty/ivy-0.4.9.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for io.reactivex#rxnetty;0.4.9 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/io.reactivex/rxnetty/ivy-0.4.9.xml
downloadGrapes: module revision found in cache: io.reactivex#rxnetty;0.4.9
found io.reactivex#rxnetty;0.4.9 in localm2
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxnetty;0.4.9 [runtime→runtime()]
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxnetty;0.4.9 [runtime→compile]
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
== resolving dependencies io.reactivex#rxnetty;0.4.9→io.reactivex#rxjava;1.2.0 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty;0.4.9→io.reactivex#rxjava;1.2.0 [runtime→runtime()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty;0.4.9→io.reactivex#rxjava;1.2.0 [runtime→compile]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty;0.4.9→io.reactivex#rxjava;1.2.0 [runtime→compile()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty;0.4.9→io.netty#netty-codec-http;4.0.27.Final [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of io.netty#netty-codec-http;4.0.27.Final of rootConf=default
using downloadGrapes to resolve io.netty#netty-codec-http;4.0.27.Final
downloadGrapes: Checking cache for: dependency: io.netty#netty-codec-http;4.0.27.Final {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/io.netty/netty-codec-http/ivy-4.0.27.Final.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for io.netty#netty-codec-http;4.0.27.Final (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/io.netty/netty-codec-http/ivy-4.0.27.Final.xml
downloadGrapes: module revision found in cache: io.netty#netty-codec-http;4.0.27.Final
found io.netty#netty-codec-http;4.0.27.Final in localm2
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.reactivex#rxnetty;0.4.9→io.netty#netty-codec-http;4.0.27.Final [runtime→runtime()]
loadData of io.netty#netty-codec-http;4.0.27.Final of rootConf=default
== resolving dependencies io.reactivex#rxnetty;0.4.9→io.netty#netty-codec-http;4.0.27.Final [runtime→compile]
loadData of io.netty#netty-codec-http;4.0.27.Final of rootConf=default
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-codec-http;4.0.27.Final→io.netty#netty-codec;4.0.27.Final [compile→master()]
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of io.netty#netty-codec;4.0.27.Final of rootConf=default
using downloadGrapes to resolve io.netty#netty-codec;4.0.27.Final
downloadGrapes: Checking cache for: dependency: io.netty#netty-codec;4.0.27.Final {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/io.netty/netty-codec/ivy-4.0.27.Final.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for io.netty#netty-codec;4.0.27.Final (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/io.netty/netty-codec/ivy-4.0.27.Final.xml
downloadGrapes: module revision found in cache: io.netty#netty-codec;4.0.27.Final
found io.netty#netty-codec;4.0.27.Final in localm2
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-codec-http;4.0.27.Final→io.netty#netty-codec;4.0.27.Final [compile→compile()]
loadData of io.netty#netty-codec;4.0.27.Final of rootConf=default
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-codec;4.0.27.Final→io.netty#netty-transport;4.0.27.Final [compile→master()]
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of io.netty#netty-transport;4.0.27.Final of rootConf=default
using downloadGrapes to resolve io.netty#netty-transport;4.0.27.Final
downloadGrapes: Checking cache for: dependency: io.netty#netty-transport;4.0.27.Final {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/io.netty/netty-transport/ivy-4.0.27.Final.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for io.netty#netty-transport;4.0.27.Final (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/io.netty/netty-transport/ivy-4.0.27.Final.xml
downloadGrapes: module revision found in cache: io.netty#netty-transport;4.0.27.Final
found io.netty#netty-transport;4.0.27.Final in localm2
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-codec;4.0.27.Final→io.netty#netty-transport;4.0.27.Final [compile→compile()]
loadData of io.netty#netty-transport;4.0.27.Final of rootConf=default
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-transport;4.0.27.Final→io.netty#netty-buffer;4.0.27.Final [compile→master()]
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of io.netty#netty-buffer;4.0.27.Final of rootConf=default
using downloadGrapes to resolve io.netty#netty-buffer;4.0.27.Final
downloadGrapes: Checking cache for: dependency: io.netty#netty-buffer;4.0.27.Final {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/io.netty/netty-buffer/ivy-4.0.27.Final.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for io.netty#netty-buffer;4.0.27.Final (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/io.netty/netty-buffer/ivy-4.0.27.Final.xml
downloadGrapes: module revision found in cache: io.netty#netty-buffer;4.0.27.Final
found io.netty#netty-buffer;4.0.27.Final in localm2
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-transport;4.0.27.Final→io.netty#netty-buffer;4.0.27.Final [compile→compile()]
loadData of io.netty#netty-buffer;4.0.27.Final of rootConf=default
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-buffer;4.0.27.Final→io.netty#netty-common;4.0.27.Final [compile→master()]
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of io.netty#netty-common;4.0.27.Final of rootConf=default
using downloadGrapes to resolve io.netty#netty-common;4.0.27.Final
downloadGrapes: Checking cache for: dependency: io.netty#netty-common;4.0.27.Final {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/io.netty/netty-common/ivy-4.0.27.Final.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for io.netty#netty-common;4.0.27.Final (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/io.netty/netty-common/ivy-4.0.27.Final.xml
downloadGrapes: module revision found in cache: io.netty#netty-common;4.0.27.Final
found io.netty#netty-common;4.0.27.Final in localm2
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {optional=[compile(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.5 {optional=[compile(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-buffer;4.0.27.Final→io.netty#netty-common;4.0.27.Final [compile→compile()]
loadData of io.netty#netty-common;4.0.27.Final of rootConf=default
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {optional=[compile(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.5 {optional=[compile(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-codec-http;4.0.27.Final→io.netty#netty-codec;4.0.27.Final [compile→runtime()]
loadData of io.netty#netty-codec;4.0.27.Final of rootConf=default
== resolving dependencies io.netty#netty-codec-http;4.0.27.Final→io.netty#netty-codec;4.0.27.Final [compile→compile]
loadData of io.netty#netty-codec;4.0.27.Final of rootConf=default
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-codec;4.0.27.Final→io.netty#netty-transport;4.0.27.Final [runtime→runtime()]
loadData of io.netty#netty-transport;4.0.27.Final of rootConf=default
== resolving dependencies io.netty#netty-codec;4.0.27.Final→io.netty#netty-transport;4.0.27.Final [runtime→compile]
loadData of io.netty#netty-transport;4.0.27.Final of rootConf=default
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-transport;4.0.27.Final→io.netty#netty-buffer;4.0.27.Final [runtime→runtime()]
loadData of io.netty#netty-buffer;4.0.27.Final of rootConf=default
== resolving dependencies io.netty#netty-transport;4.0.27.Final→io.netty#netty-buffer;4.0.27.Final [runtime→compile]
loadData of io.netty#netty-buffer;4.0.27.Final of rootConf=default
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-buffer;4.0.27.Final→io.netty#netty-common;4.0.27.Final [runtime→runtime()]
loadData of io.netty#netty-common;4.0.27.Final of rootConf=default
== resolving dependencies io.netty#netty-buffer;4.0.27.Final→io.netty#netty-common;4.0.27.Final [runtime→compile]
loadData of io.netty#netty-common;4.0.27.Final of rootConf=default
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {optional=[compile(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.5 {optional=[compile(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-codec-http;4.0.27.Final→io.netty#netty-handler;4.0.27.Final [compile→master()]
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of io.netty#netty-handler;4.0.27.Final of rootConf=default
using downloadGrapes to resolve io.netty#netty-handler;4.0.27.Final
downloadGrapes: Checking cache for: dependency: io.netty#netty-handler;4.0.27.Final {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/io.netty/netty-handler/ivy-4.0.27.Final.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for io.netty#netty-handler;4.0.27.Final (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/io.netty/netty-handler/ivy-4.0.27.Final.xml
downloadGrapes: module revision found in cache: io.netty#netty-handler;4.0.27.Final
found io.netty#netty-handler;4.0.27.Final in localm2
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-codec-http;4.0.27.Final→io.netty#netty-handler;4.0.27.Final [compile→compile()]
loadData of io.netty#netty-handler;4.0.27.Final of rootConf=default
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-handler;4.0.27.Final→io.netty#netty-buffer;4.0.27.Final [compile→master()]
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
loadData of io.netty#netty-buffer;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-handler;4.0.27.Final→io.netty#netty-buffer;4.0.27.Final [compile→compile()]
loadData of io.netty#netty-buffer;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-handler;4.0.27.Final→io.netty#netty-transport;4.0.27.Final [compile→master()]
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
loadData of io.netty#netty-transport;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-handler;4.0.27.Final→io.netty#netty-transport;4.0.27.Final [compile→compile()]
loadData of io.netty#netty-transport;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-handler;4.0.27.Final→io.netty#netty-codec;4.0.27.Final [compile→master()]
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
loadData of io.netty#netty-codec;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-handler;4.0.27.Final→io.netty#netty-codec;4.0.27.Final [compile→compile()]
loadData of io.netty#netty-codec;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-codec-http;4.0.27.Final→io.netty#netty-handler;4.0.27.Final [compile→runtime()]
loadData of io.netty#netty-handler;4.0.27.Final of rootConf=default
== resolving dependencies io.netty#netty-codec-http;4.0.27.Final→io.netty#netty-handler;4.0.27.Final [compile→compile]
loadData of io.netty#netty-handler;4.0.27.Final of rootConf=default
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-handler;4.0.27.Final→io.netty#netty-buffer;4.0.27.Final [runtime→runtime()]
loadData of io.netty#netty-buffer;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-handler;4.0.27.Final→io.netty#netty-buffer;4.0.27.Final [runtime→compile]
loadData of io.netty#netty-buffer;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-handler;4.0.27.Final→io.netty#netty-transport;4.0.27.Final [runtime→runtime()]
loadData of io.netty#netty-transport;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-handler;4.0.27.Final→io.netty#netty-transport;4.0.27.Final [runtime→compile]
loadData of io.netty#netty-transport;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-handler;4.0.27.Final→io.netty#netty-codec;4.0.27.Final [runtime→runtime()]
loadData of io.netty#netty-codec;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-handler;4.0.27.Final→io.netty#netty-codec;4.0.27.Final [runtime→compile]
loadData of io.netty#netty-codec;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-codec-http;4.0.27.Final→io.netty#netty-codec;4.0.27.Final [runtime→runtime()]
loadData of io.netty#netty-codec;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-codec-http;4.0.27.Final→io.netty#netty-codec;4.0.27.Final [runtime→compile]
loadData of io.netty#netty-codec;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-codec-http;4.0.27.Final→io.netty#netty-handler;4.0.27.Final [runtime→runtime()]
loadData of io.netty#netty-handler;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-codec-http;4.0.27.Final→io.netty#netty-handler;4.0.27.Final [runtime→compile]
loadData of io.netty#netty-handler;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty;0.4.9→io.netty#netty-codec-http;4.0.27.Final [runtime→compile()]
loadData of io.netty#netty-codec-http;4.0.27.Final of rootConf=default
== resolving dependencies io.reactivex#rxnetty;0.4.9→io.netty#netty-transport-native-epoll;4.0.27.Final [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of io.netty#netty-transport-native-epoll;4.0.27.Final of rootConf=default
using downloadGrapes to resolve io.netty#netty-transport-native-epoll;4.0.27.Final
downloadGrapes: Checking cache for: dependency: io.netty#netty-transport-native-epoll;4.0.27.Final {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/io.netty/netty-transport-native-epoll/ivy-4.0.27.Final.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for io.netty#netty-transport-native-epoll;4.0.27.Final (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/io.netty/netty-transport-native-epoll/ivy-4.0.27.Final.xml
downloadGrapes: module revision found in cache: io.netty#netty-transport-native-epoll;4.0.27.Final
found io.netty#netty-transport-native-epoll;4.0.27.Final in localm2
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.reactivex#rxnetty;0.4.9→io.netty#netty-transport-native-epoll;4.0.27.Final [runtime→runtime()]
loadData of io.netty#netty-transport-native-epoll;4.0.27.Final of rootConf=default
== resolving dependencies io.reactivex#rxnetty;0.4.9→io.netty#netty-transport-native-epoll;4.0.27.Final [runtime→compile]
loadData of io.netty#netty-transport-native-epoll;4.0.27.Final of rootConf=default
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-transport-native-epoll;4.0.27.Final→io.netty#netty-common;4.0.27.Final [compile→master()]
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
loadData of io.netty#netty-common;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-transport-native-epoll;4.0.27.Final→io.netty#netty-common;4.0.27.Final [compile→compile()]
loadData of io.netty#netty-common;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-transport-native-epoll;4.0.27.Final→io.netty#netty-buffer;4.0.27.Final [compile→master()]
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
loadData of io.netty#netty-buffer;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-transport-native-epoll;4.0.27.Final→io.netty#netty-buffer;4.0.27.Final [compile→compile()]
loadData of io.netty#netty-buffer;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-transport-native-epoll;4.0.27.Final→io.netty#netty-transport;4.0.27.Final [compile→master()]
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
loadData of io.netty#netty-transport;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-transport-native-epoll;4.0.27.Final→io.netty#netty-transport;4.0.27.Final [compile→compile()]
loadData of io.netty#netty-transport;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
dependency descriptor has been mediated: dependency: org.javassist#javassist;3.19.0-GA {test=[runtime(), master()]} ⇒ dependency: org.javassist#javassist;3.21.0-GA {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;1.10.8 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.0.13 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
== resolving dependencies io.netty#netty-transport-native-epoll;4.0.27.Final→io.netty#netty-common;4.0.27.Final [runtime→runtime()]
loadData of io.netty#netty-common;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-transport-native-epoll;4.0.27.Final→io.netty#netty-common;4.0.27.Final [runtime→compile]
loadData of io.netty#netty-common;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-transport-native-epoll;4.0.27.Final→io.netty#netty-buffer;4.0.27.Final [runtime→runtime()]
loadData of io.netty#netty-buffer;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-transport-native-epoll;4.0.27.Final→io.netty#netty-buffer;4.0.27.Final [runtime→compile]
loadData of io.netty#netty-buffer;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-transport-native-epoll;4.0.27.Final→io.netty#netty-transport;4.0.27.Final [runtime→runtime()]
loadData of io.netty#netty-transport;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.netty#netty-transport-native-epoll;4.0.27.Final→io.netty#netty-transport;4.0.27.Final [runtime→compile]
loadData of io.netty#netty-transport;4.0.27.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty;0.4.9→io.netty#netty-transport-native-epoll;4.0.27.Final [runtime→compile()]
loadData of io.netty#netty-transport-native-epoll;4.0.27.Final of rootConf=default
== resolving dependencies io.reactivex#rxnetty;0.4.9→org.slf4j#slf4j-api;1.7.25 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty;0.4.9→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty;0.4.9→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty;0.4.9→org.slf4j#slf4j-api;1.7.25 [runtime→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxnetty;0.4.9 [runtime→compile()]
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxnetty-contexts;0.4.9 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of io.reactivex#rxnetty-contexts;0.4.9 of rootConf=default
using downloadGrapes to resolve io.reactivex#rxnetty-contexts;0.4.9
downloadGrapes: Checking cache for: dependency: io.reactivex#rxnetty-contexts;0.4.9 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/io.reactivex/rxnetty-contexts/ivy-0.4.9.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for io.reactivex#rxnetty-contexts;0.4.9 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/io.reactivex/rxnetty-contexts/ivy-0.4.9.xml
downloadGrapes: module revision found in cache: io.reactivex#rxnetty-contexts;0.4.9
found io.reactivex#rxnetty-contexts;0.4.9 in localm2
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxnetty-contexts;0.4.9 [runtime→runtime()]
loadData of io.reactivex#rxnetty-contexts;0.4.9 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxnetty-contexts;0.4.9 [runtime→compile]
loadData of io.reactivex#rxnetty-contexts;0.4.9 of rootConf=default
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies io.reactivex#rxnetty-contexts;0.4.9→io.reactivex#rxjava;1.2.0 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-contexts;0.4.9→io.reactivex#rxjava;1.2.0 [runtime→runtime()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-contexts;0.4.9→io.reactivex#rxjava;1.2.0 [runtime→compile]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-contexts;0.4.9→io.reactivex#rxjava;1.2.0 [runtime→compile()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-contexts;0.4.9→io.reactivex#rxnetty;0.4.9 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-contexts;0.4.9→io.reactivex#rxnetty;0.4.9 [runtime→runtime()]
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-contexts;0.4.9→io.reactivex#rxnetty;0.4.9 [runtime→compile]
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-contexts;0.4.9→io.reactivex#rxnetty;0.4.9 [runtime→compile()]
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxnetty-contexts;0.4.9 [runtime→compile()]
loadData of io.reactivex#rxnetty-contexts;0.4.9 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxnetty-servo;0.4.9 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of io.reactivex#rxnetty-servo;0.4.9 of rootConf=default
using downloadGrapes to resolve io.reactivex#rxnetty-servo;0.4.9
downloadGrapes: Checking cache for: dependency: io.reactivex#rxnetty-servo;0.4.9 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/io.reactivex/rxnetty-servo/ivy-0.4.9.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for io.reactivex#rxnetty-servo;0.4.9 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/io.reactivex/rxnetty-servo/ivy-0.4.9.xml
downloadGrapes: module revision found in cache: io.reactivex#rxnetty-servo;0.4.9
found io.reactivex#rxnetty-servo;0.4.9 in localm2
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxnetty-servo;0.4.9 [runtime→runtime()]
loadData of io.reactivex#rxnetty-servo;0.4.9 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxnetty-servo;0.4.9 [runtime→compile]
loadData of io.reactivex#rxnetty-servo;0.4.9 of rootConf=default
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
== resolving dependencies io.reactivex#rxnetty-servo;0.4.9→io.reactivex#rxjava;1.2.0 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-servo;0.4.9→io.reactivex#rxjava;1.2.0 [runtime→runtime()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-servo;0.4.9→io.reactivex#rxjava;1.2.0 [runtime→compile]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-servo;0.4.9→io.reactivex#rxjava;1.2.0 [runtime→compile()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-servo;0.4.9→io.reactivex#rxnetty;0.4.9 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-servo;0.4.9→io.reactivex#rxnetty;0.4.9 [runtime→runtime()]
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-servo;0.4.9→io.reactivex#rxnetty;0.4.9 [runtime→compile]
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-servo;0.4.9→io.reactivex#rxnetty;0.4.9 [runtime→compile()]
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-servo;0.4.9→com.netflix.servo#servo-core;0.10.1 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-servo;0.4.9→com.netflix.servo#servo-core;0.10.1 [runtime→runtime()]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-servo;0.4.9→com.netflix.servo#servo-core;0.10.1 [runtime→compile]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies io.reactivex#rxnetty-servo;0.4.9→com.netflix.servo#servo-core;0.10.1 [runtime→compile()]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→io.reactivex#rxnetty-servo;0.4.9 [runtime→compile()]
loadData of io.reactivex#rxnetty-servo;0.4.9 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→javax.inject#javax.inject;1 [runtime→master()]
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→javax.inject#javax.inject;1 [runtime→runtime()]
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→javax.inject#javax.inject;1 [runtime→compile]
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→javax.inject#javax.inject;1 [runtime→compile()]
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→master()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.google.guava#guava;18.0 [runtime→master()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.google.guava#guava;18.0 [runtime→runtime()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.google.guava#guava;18.0 [runtime→compile]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.google.guava#guava;18.0 [runtime→compile()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→master()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→runtime()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-transport;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.ribbon#ribbon-transport;2.2.5 [runtime→compile()]
loadData of com.netflix.ribbon#ribbon-transport;2.2.5 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.hystrix#hystrix-core;1.5.12 [runtime→master()]
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of com.netflix.hystrix#hystrix-core;1.5.12 of rootConf=default
using downloadGrapes to resolve com.netflix.hystrix#hystrix-core;1.5.12
downloadGrapes: Checking cache for: dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.hystrix/hystrix-core/ivy-1.5.12.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.hystrix#hystrix-core;1.5.12 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.hystrix/hystrix-core/ivy-1.5.12.xml
downloadGrapes: module revision found in cache: com.netflix.hystrix#hystrix-core;1.5.12
found com.netflix.hystrix#hystrix-core;1.5.12 in localm2
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.hystrix#hystrix-core;1.5.12 [runtime→runtime()]
loadData of com.netflix.hystrix#hystrix-core;1.5.12 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.hystrix#hystrix-core;1.5.12 [runtime→compile]
loadData of com.netflix.hystrix#hystrix-core;1.5.12 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→com.netflix.archaius#archaius-core;0.7.4 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→com.netflix.archaius#archaius-core;0.7.4 [compile→compile()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→io.reactivex#rxjava;1.2.0 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→io.reactivex#rxjava;1.2.0 [compile→compile()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→org.hdrhistogram#HdrHistogram;2.1.9 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.hystrix#hystrix-core;1.4.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.hystrix#hystrix-core;1.5.12 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: io.reactivex#rxjava;1.0.10 {runtime=[compile(), runtime(), master()]} ⇒ dependency: io.reactivex#rxjava;1.2.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-log4j12;1.7.2 {test=[runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-log4j12;1.7.25 {test=[runtime(), master()]}
loadData of org.hdrhistogram#HdrHistogram;2.1.9 of rootConf=default
using downloadGrapes to resolve org.hdrhistogram#HdrHistogram;2.1.9
downloadGrapes: Checking cache for: dependency: org.hdrhistogram#HdrHistogram;2.1.9 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.hdrhistogram/HdrHistogram/ivy-2.1.9.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.hdrhistogram#HdrHistogram;2.1.9 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.hdrhistogram/HdrHistogram/ivy-2.1.9.xml
downloadGrapes: module revision found in cache: org.hdrhistogram#HdrHistogram;2.1.9
found org.hdrhistogram#HdrHistogram;2.1.9 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→org.hdrhistogram#HdrHistogram;2.1.9 [compile→compile()]
loadData of org.hdrhistogram#HdrHistogram;2.1.9 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→org.hdrhistogram#HdrHistogram;2.1.9 [compile→runtime()]
loadData of org.hdrhistogram#HdrHistogram;2.1.9 of rootConf=default
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→org.hdrhistogram#HdrHistogram;2.1.9 [compile→compile]
loadData of org.hdrhistogram#HdrHistogram;2.1.9 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→org.slf4j#slf4j-api;1.7.25 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.0 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.4.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→org.slf4j#slf4j-api;1.7.25 [runtime→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→com.netflix.archaius#archaius-core;0.7.4 [runtime→runtime()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→io.reactivex#rxjava;1.2.0 [runtime→runtime()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→io.reactivex#rxjava;1.2.0 [runtime→compile]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→org.hdrhistogram#HdrHistogram;2.1.9 [runtime→runtime()]
loadData of org.hdrhistogram#HdrHistogram;2.1.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.hystrix#hystrix-core;1.5.12→org.hdrhistogram#HdrHistogram;2.1.9 [runtime→compile]
loadData of org.hdrhistogram#HdrHistogram;2.1.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.hystrix#hystrix-core;1.5.12 [runtime→compile()]
loadData of com.netflix.hystrix#hystrix-core;1.5.12 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→javax.inject#javax.inject;1 [runtime→master()]
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→javax.inject#javax.inject;1 [runtime→runtime()]
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→javax.inject#javax.inject;1 [runtime→compile]
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→javax.inject#javax.inject;1 [runtime→compile()]
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→io.reactivex#rxjava;1.2.0 [runtime→master()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→io.reactivex#rxjava;1.2.0 [runtime→runtime()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→io.reactivex#rxjava;1.2.0 [runtime→compile]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→io.reactivex#rxjava;1.2.0 [runtime→compile()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→io.reactivex#rxnetty;0.4.9 [runtime→master()]
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→io.reactivex#rxnetty;0.4.9 [runtime→runtime()]
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→io.reactivex#rxnetty;0.4.9 [runtime→compile]
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→io.reactivex#rxnetty;0.4.9 [runtime→compile()]
loadData of io.reactivex#rxnetty;0.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→commons-configuration#commons-configuration;1.8 [runtime→master()]
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→commons-configuration#commons-configuration;1.8 [runtime→runtime()]
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→commons-configuration#commons-configuration;1.8 [runtime→compile]
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→commons-configuration#commons-configuration;1.8 [runtime→compile()]
loadData of commons-configuration#commons-configuration;1.8 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.google.guava#guava;18.0 [runtime→master()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.google.guava#guava;18.0 [runtime→runtime()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.google.guava#guava;18.0 [runtime→compile]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.google.guava#guava;18.0 [runtime→compile()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→master()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→runtime()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon-httpclient;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-httpclient;2.2.5 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon-httpclient;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-httpclient;2.2.5 of rootConf=default
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→compile()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→compile()]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→commons-collections#commons-collections;3.2.2 [runtime→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of commons-collections#commons-collections;3.2.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→commons-collections#commons-collections;3.2.2 [runtime→runtime()]
loadData of commons-collections#commons-collections;3.2.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→commons-collections#commons-collections;3.2.2 [runtime→compile]
loadData of commons-collections#commons-collections;3.2.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→commons-collections#commons-collections;3.2.2 [runtime→compile()]
loadData of commons-collections#commons-collections;3.2.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→org.apache.httpcomponents#httpclient;4.5.5 [runtime→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→org.apache.httpcomponents#httpclient;4.5.5 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→org.apache.httpcomponents#httpclient;4.5.5 [runtime→compile]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→org.apache.httpcomponents#httpclient;4.5.5 [runtime→compile()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.sun.jersey#jersey-client;1.19.1 [runtime→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.sun.jersey#jersey-client;1.19.1 of rootConf=default
using downloadGrapes to resolve com.sun.jersey#jersey-client;1.19.1
downloadGrapes: Checking cache for: dependency: com.sun.jersey#jersey-client;1.19.1 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.sun.jersey/jersey-client/ivy-1.19.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.sun.jersey#jersey-client;1.19.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.sun.jersey/jersey-client/ivy-1.19.1.xml
downloadGrapes: module revision found in cache: com.sun.jersey#jersey-client;1.19.1
found com.sun.jersey#jersey-client;1.19.1 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.sun.jersey#jersey-client;1.19.1 [runtime→runtime()]
loadData of com.sun.jersey#jersey-client;1.19.1 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.sun.jersey#jersey-client;1.19.1 [runtime→compile]
loadData of com.sun.jersey#jersey-client;1.19.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.sun.jersey#jersey-client;1.19.1 [runtime→compile()]
loadData of com.sun.jersey#jersey-client;1.19.1 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.sun.jersey.contribs#jersey-apache-client4;1.19.1 [runtime→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.sun.jersey.contribs#jersey-apache-client4;1.19.1 of rootConf=default
using downloadGrapes to resolve com.sun.jersey.contribs#jersey-apache-client4;1.19.1
downloadGrapes: Checking cache for: dependency: com.sun.jersey.contribs#jersey-apache-client4;1.19.1 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.sun.jersey.contribs/jersey-apache-client4/ivy-1.19.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.sun.jersey.contribs#jersey-apache-client4;1.19.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.sun.jersey.contribs/jersey-apache-client4/ivy-1.19.1.xml
downloadGrapes: module revision found in cache: com.sun.jersey.contribs#jersey-apache-client4;1.19.1
found com.sun.jersey.contribs#jersey-apache-client4;1.19.1 in localm2
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.sun.jersey.contribs#jersey-apache-client4;1.19.1 [runtime→runtime()]
loadData of com.sun.jersey.contribs#jersey-apache-client4;1.19.1 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.sun.jersey.contribs#jersey-apache-client4;1.19.1 [runtime→compile]
loadData of com.sun.jersey.contribs#jersey-apache-client4;1.19.1 of rootConf=default
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.sun.jersey.contribs#jersey-apache-client4;1.19.1→org.apache.httpcomponents#httpclient;4.5.5 [compile→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.sun.jersey.contribs#jersey-apache-client4;1.19.1→org.apache.httpcomponents#httpclient;4.5.5 [compile→compile()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.sun.jersey.contribs#jersey-apache-client4;1.19.1→org.apache.httpcomponents#httpclient;4.5.5 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.sun.jersey.contribs#jersey-apache-client4;1.19.1→org.apache.httpcomponents#httpclient;4.5.5 [runtime→compile]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.sun.jersey.contribs#jersey-apache-client4;1.19.1 [runtime→compile()]
loadData of com.sun.jersey.contribs#jersey-apache-client4;1.19.1 of rootConf=default
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.servo#servo-core;0.10.1 [runtime→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.servo#servo-core;0.10.1 [runtime→runtime()]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.servo#servo-core;0.10.1 [runtime→compile]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.servo#servo-core;0.10.1 [runtime→compile()]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.google.guava#guava;18.0 [runtime→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.google.guava#guava;18.0 [runtime→runtime()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.google.guava#guava;18.0 [runtime→compile]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.google.guava#guava;18.0 [runtime→compile()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→runtime()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.netflix-commons#netflix-commons-util;0.1.1 [runtime→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;16.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
loadData of com.netflix.netflix-commons#netflix-commons-util;0.1.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.netflix-commons#netflix-commons-util;0.1.1 [runtime→runtime()]
loadData of com.netflix.netflix-commons#netflix-commons-util;0.1.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.netflix-commons#netflix-commons-util;0.1.1 [runtime→compile]
loadData of com.netflix.netflix-commons#netflix-commons-util;0.1.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-httpclient;2.2.5→com.netflix.netflix-commons#netflix-commons-util;0.1.1 [runtime→compile()]
loadData of com.netflix.netflix-commons#netflix-commons-util;0.1.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE→org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-consul-all/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-consul-all/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE in jcenter
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-consul-bus/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-consul-bus/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-consul/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-consul/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-consul-core/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-consul-core/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE→org.apache.httpcomponents#httpclient;4.5.2 [compile→master()]
loadData of org.apache.httpcomponents#httpclient;4.5.2 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE→org.apache.httpcomponents#httpclient;4.5.5 [compile→master()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE→org.apache.httpcomponents#httpclient;4.5.2 [compile→compile()]
loadData of org.apache.httpcomponents#httpclient;4.5.2 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE→org.apache.httpcomponents#httpclient;4.5.5 [compile→compile()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE→org.apache.httpcomponents#httpcore;4.4.5 [compile→master()]
loadData of org.apache.httpcomponents#httpcore;4.4.5 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE→org.apache.httpcomponents#httpcore;4.4.9 [compile→master()]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE→org.apache.httpcomponents#httpcore;4.4.5 [compile→compile()]
loadData of org.apache.httpcomponents#httpcore;4.4.5 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE→org.apache.httpcomponents#httpcore;4.4.9 [compile→compile()]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→com.ecwid.consul#consul-api;1.3.0 [compile→master()]
loadData of com.ecwid.consul#consul-api;1.3.0 of rootConf=default
using downloadGrapes to resolve com.ecwid.consul#consul-api;1.3.0
downloadGrapes: Checking cache for: dependency: com.ecwid.consul#consul-api;1.3.0 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.ecwid.consul/consul-api/ivy-1.3.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.ecwid.consul#consul-api;1.3.0 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.ecwid.consul/consul-api/ivy-1.3.0.xml
downloadGrapes: module revision found in cache: com.ecwid.consul#consul-api;1.3.0
found com.ecwid.consul#consul-api;1.3.0 in localm2
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→com.ecwid.consul#consul-api;1.3.0 [compile→compile()]
loadData of com.ecwid.consul#consul-api;1.3.0 of rootConf=default
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→com.google.code.gson#gson;2.3.1 [compile→master()]
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
loadData of com.google.code.gson#gson;2.3.1 of rootConf=default
using downloadGrapes to resolve com.google.code.gson#gson;2.3.1
downloadGrapes: Checking cache for: dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.google.code.gson/gson/ivy-2.3.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.google.code.gson#gson;2.3.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.google.code.gson/gson/ivy-2.3.1.xml
downloadGrapes: module revision found in cache: com.google.code.gson#gson;2.3.1
found com.google.code.gson#gson;2.3.1 in localm2
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→com.google.code.gson#gson;2.3.1 [compile→compile()]
loadData of com.google.code.gson#gson;2.3.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→org.apache.httpcomponents#httpcore;4.4.5 [compile→master()]
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
loadData of org.apache.httpcomponents#httpcore;4.4.5 of rootConf=default
default is evicted. Skip loading
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→org.apache.httpcomponents#httpcore;4.4.9 [compile→master()]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→org.apache.httpcomponents#httpcore;4.4.5 [compile→compile()]
loadData of org.apache.httpcomponents#httpcore;4.4.5 of rootConf=default
default is evicted. Skip loading
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→org.apache.httpcomponents#httpcore;4.4.9 [compile→compile()]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→org.apache.httpcomponents#httpclient;4.5.2 [compile→master()]
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
loadData of org.apache.httpcomponents#httpclient;4.5.2 of rootConf=default
default is evicted. Skip loading
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→org.apache.httpcomponents#httpclient;4.5.5 [compile→master()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→org.apache.httpcomponents#httpclient;4.5.2 [compile→compile()]
loadData of org.apache.httpcomponents#httpclient;4.5.2 of rootConf=default
default is evicted. Skip loading
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→org.apache.httpcomponents#httpclient;4.5.5 [compile→compile()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→com.google.code.gson#gson;2.3.1 [compile→master()]
loadData of com.google.code.gson#gson;2.3.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→com.google.code.gson#gson;2.3.1 [compile→compile()]
loadData of com.google.code.gson#gson;2.3.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.apache.httpcomponents#httpclient;4.5.2 [compile→master()]
loadData of org.apache.httpcomponents#httpclient;4.5.2 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.apache.httpcomponents#httpclient;4.5.5 [compile→master()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.apache.httpcomponents#httpclient;4.5.2 [compile→compile()]
loadData of org.apache.httpcomponents#httpclient;4.5.2 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.apache.httpcomponents#httpclient;4.5.5 [compile→compile()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.apache.httpcomponents#httpcore;4.4.5 [compile→master()]
loadData of org.apache.httpcomponents#httpcore;4.4.5 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.apache.httpcomponents#httpcore;4.4.9 [compile→master()]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.apache.httpcomponents#httpcore;4.4.5 [compile→compile()]
loadData of org.apache.httpcomponents#httpcore;4.4.5 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.apache.httpcomponents#httpcore;4.4.9 [compile→compile()]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-consul-binder/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-consul-binder/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-stream/ivy-1.3.3.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-stream/ivy-1.3.3.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE
found org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-actuator/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-actuator/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
found org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-actuator/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-actuator/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE
found org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [compile→runtime()]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [compile→compile]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]} ⇒ dependency: org.infinispan#infinispan-spring4-embedded;8.2.11.Final {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-jdbc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-webmvc;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-cassandra;1.5.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-couchbase;2.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-ldap;1.0.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-mongodb;1.10.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-neo4j;4.2.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-redis;1.8.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.data#spring-data-solr;2.1.13.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-web;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.security#spring-security-config;4.2.7.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-core;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]} ⇒ dependency: org.apache.tomcat#tomcat-jdbc;8.5.31 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-core;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]} ⇒ dependency: io.undertow#undertow-servlet;1.4.25.Final {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]} ⇒ dependency: org.hsqldb#hsqldb;2.3.6 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-elasticsearch;2.1.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.data#spring-data-rest-webmvc;2.6.13.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.security#spring-security-test;4.2.7.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-validation/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-validation/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE
found org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-el;8.5.31 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.apache.tomcat.embed#tomcat-embed-el;8.5.31 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-el;8.5.31 [compile→compile()]
loadData of org.apache.tomcat.embed#tomcat-embed-el;8.5.31 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE→org.hibernate#hibernate-validator;5.3.6.Final [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.hibernate#hibernate-validator;5.3.6.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE→org.hibernate#hibernate-validator;5.3.6.Final [compile→compile()]
loadData of org.hibernate#hibernate-validator;5.3.6.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE [compile→runtime()]
loadData of org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE [compile→compile]
loadData of org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.tomcat.embed#tomcat-embed-el;8.5.31 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-el;8.5.31 [runtime→runtime()]
loadData of org.apache.tomcat.embed#tomcat-embed-el;8.5.31 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE→org.apache.tomcat.embed#tomcat-embed-el;8.5.31 [runtime→compile]
loadData of org.apache.tomcat.embed#tomcat-embed-el;8.5.31 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE→org.hibernate#hibernate-validator;5.3.6.Final [runtime→runtime()]
loadData of org.hibernate#hibernate-validator;5.3.6.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE→org.hibernate#hibernate-validator;5.3.6.Final [runtime→compile]
loadData of org.hibernate#hibernate-validator;5.3.6.Final of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework#spring-messaging;4.3.18.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-messaging/ivy-4.3.18.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework#spring-messaging;4.3.18.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-messaging/ivy-4.3.18.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework#spring-messaging;4.3.18.RELEASE
found org.springframework#spring-messaging;4.3.18.RELEASE in localm2
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
== resolving dependencies org.springframework#spring-messaging;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-messaging;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-messaging;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-messaging;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-messaging;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-messaging;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [compile→runtime()]
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [compile→compile]
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]} ⇒ dependency: io.projectreactor#reactor-core;2.0.8.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-client;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-client;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.eclipse.jetty.websocket#websocket-server;9.3.14.v20161028 {optional=[compile(), master()]} ⇒ dependency: org.eclipse.jetty.websocket#websocket-server;9.4.11.v20180605 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
== resolving dependencies org.springframework#spring-messaging;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-messaging;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-messaging;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-messaging;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-messaging;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-messaging;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.integration#spring-integration-core;4.3.17.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.integration/spring-integration-core/ivy-4.3.17.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.integration#spring-integration-core;4.3.17.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.integration/spring-integration-core/ivy-4.3.17.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.integration#spring-integration-core;4.3.17.RELEASE
found org.springframework.integration#spring-integration-core;4.3.17.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [compile→compile()]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-tx;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-tx;4.3.18.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework#spring-tx;4.3.18.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-tx/ivy-4.3.18.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework#spring-tx;4.3.18.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-tx/ivy-4.3.18.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework#spring-tx;4.3.18.RELEASE
found org.springframework#spring-tx;4.3.18.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-tx;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-tx;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework#spring-tx;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tx;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tx;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tx;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework.retry#spring-retry;1.2.2.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework.retry#spring-retry;1.2.2.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.retry#spring-retry;1.2.2.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.retry/spring-retry/ivy-1.2.2.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.retry#spring-retry;1.2.2.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.retry/spring-retry/ivy-1.2.2.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.retry#spring-retry;1.2.2.RELEASE
found org.springframework.retry#spring-retry;1.2.2.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.13.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework.retry#spring-retry;1.2.2.RELEASE [compile→compile()]
loadData of org.springframework.retry#spring-retry;1.2.2.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.13.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.retry#spring-retry;1.2.2.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.13.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.13.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.13.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.13.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.13.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.retry#spring-retry;1.2.2.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework.retry#spring-retry;1.2.2.RELEASE [compile→runtime()]
loadData of org.springframework.retry#spring-retry;1.2.2.RELEASE of rootConf=default
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework.retry#spring-retry;1.2.2.RELEASE [compile→compile]
loadData of org.springframework.retry#spring-retry;1.2.2.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.aspectj#aspectjrt;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjrt;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.aspectj#aspectjweaver;1.8.9 {test=[runtime(), master()]} ⇒ dependency: org.aspectj#aspectjweaver;1.8.13 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.13.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.13.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.13.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.retry#spring-retry;1.2.2.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.retry#spring-retry;1.2.2.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [compile→runtime()]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [compile→compile]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.retry#spring-retry;1.1.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.retry#spring-retry;1.2.2.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.10 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-tx;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-tx;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework#spring-tx;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-tx;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework#spring-tx;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tx;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tx;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tx;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework.retry#spring-retry;1.2.2.RELEASE [runtime→runtime()]
loadData of org.springframework.retry#spring-retry;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-core;4.3.17.RELEASE→org.springframework.retry#spring-retry;1.2.2.RELEASE [runtime→compile]
loadData of org.springframework.retry#spring-retry;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.integration/spring-integration-jmx/ivy-4.3.17.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.integration/spring-integration-jmx/ivy-4.3.17.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE
found org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE [compile→compile()]
loadData of org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [compile→compile()]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE [compile→runtime()]
loadData of org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE [compile→compile]
loadData of org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [runtime→runtime()]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [runtime→compile]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework#spring-tuple;1.0.0.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework#spring-tuple;1.0.0.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework#spring-tuple;1.0.0.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework#spring-tuple;1.0.0.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-tuple/ivy-1.0.0.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework#spring-tuple;1.0.0.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-tuple/ivy-1.0.0.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework#spring-tuple;1.0.0.RELEASE
found org.springframework#spring-tuple;1.0.0.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework#spring-tuple;1.0.0.RELEASE [compile→compile()]
loadData of org.springframework#spring-tuple;1.0.0.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→com.esotericsoftware#kryo-shaded;3.0.3 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of com.esotericsoftware#kryo-shaded;3.0.3 of rootConf=default
using downloadGrapes to resolve com.esotericsoftware#kryo-shaded;3.0.3
downloadGrapes: Checking cache for: dependency: com.esotericsoftware#kryo-shaded;3.0.3 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.esotericsoftware/kryo-shaded/ivy-3.0.3.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.esotericsoftware#kryo-shaded;3.0.3 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.esotericsoftware/kryo-shaded/ivy-3.0.3.xml
downloadGrapes: module revision found in cache: com.esotericsoftware#kryo-shaded;3.0.3
found com.esotericsoftware#kryo-shaded;3.0.3 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→com.esotericsoftware#kryo-shaded;3.0.3 [compile→compile()]
loadData of com.esotericsoftware#kryo-shaded;3.0.3 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.esotericsoftware#kryo-shaded;3.0.3→com.esotericsoftware#minlog;1.3.0 [compile→master()]
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of com.esotericsoftware#minlog;1.3.0 of rootConf=default
using downloadGrapes to resolve com.esotericsoftware#minlog;1.3.0
downloadGrapes: Checking cache for: dependency: com.esotericsoftware#minlog;1.3.0 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.esotericsoftware/minlog/ivy-1.3.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.esotericsoftware#minlog;1.3.0 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.esotericsoftware/minlog/ivy-1.3.0.xml
downloadGrapes: module revision found in cache: com.esotericsoftware#minlog;1.3.0
found com.esotericsoftware#minlog;1.3.0 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.esotericsoftware#kryo-shaded;3.0.3→com.esotericsoftware#minlog;1.3.0 [compile→compile()]
loadData of com.esotericsoftware#minlog;1.3.0 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.esotericsoftware#kryo-shaded;3.0.3→org.objenesis#objenesis;2.1 [compile→master()]
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.objenesis#objenesis;2.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.esotericsoftware#kryo-shaded;3.0.3→org.objenesis#objenesis;2.1 [compile→compile()]
loadData of org.objenesis#objenesis;2.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework#spring-tuple;1.0.0.RELEASE [compile→runtime()]
loadData of org.springframework#spring-tuple;1.0.0.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework#spring-tuple;1.0.0.RELEASE [compile→compile]
loadData of org.springframework#spring-tuple;1.0.0.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.2.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→com.esotericsoftware#kryo-shaded;3.0.3 [runtime→runtime()]
loadData of com.esotericsoftware#kryo-shaded;3.0.3 of rootConf=default
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→com.esotericsoftware#kryo-shaded;3.0.3 [runtime→compile]
loadData of com.esotericsoftware#kryo-shaded;3.0.3 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.esotericsoftware#kryo-shaded;3.0.3→com.esotericsoftware#minlog;1.3.0 [runtime→runtime()]
loadData of com.esotericsoftware#minlog;1.3.0 of rootConf=default
== resolving dependencies com.esotericsoftware#kryo-shaded;3.0.3→com.esotericsoftware#minlog;1.3.0 [runtime→compile]
loadData of com.esotericsoftware#minlog;1.3.0 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.esotericsoftware#kryo-shaded;3.0.3→org.objenesis#objenesis;2.1 [runtime→runtime()]
loadData of org.objenesis#objenesis;2.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.esotericsoftware#kryo-shaded;3.0.3→org.objenesis#objenesis;2.1 [runtime→compile]
loadData of org.objenesis#objenesis;2.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-tuple;1.0.0.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
loadData of org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.integration/spring-integration-tuple/ivy-1.0.0.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.integration/spring-integration-tuple/ivy-1.0.0.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE
found org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE [compile→compile()]
loadData of org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE→org.springframework#spring-tuple;1.0.0.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework#spring-tuple;1.0.0.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE→org.springframework#spring-tuple;1.0.0.RELEASE [compile→compile()]
loadData of org.springframework#spring-tuple;1.0.0.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [compile→compile()]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE [compile→runtime()]
loadData of org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE [compile→compile]
loadData of org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.2.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE→org.springframework#spring-tuple;1.0.0.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-tuple;1.0.0.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE→org.springframework#spring-tuple;1.0.0.RELEASE [runtime→compile]
loadData of org.springframework#spring-tuple;1.0.0.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [runtime→runtime()]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [runtime→compile]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.retry#spring-retry;1.2.2.RELEASE [compile→master()]
loadData of org.springframework.retry#spring-retry;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.retry#spring-retry;1.2.2.RELEASE [compile→compile()]
loadData of org.springframework.retry#spring-retry;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [compile→default]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [compile→runtime]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [runtime→runtime()]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [runtime→compile]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE [runtime→runtime()]
loadData of org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE [runtime→compile]
loadData of org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework#spring-tuple;1.0.0.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-tuple;1.0.0.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework#spring-tuple;1.0.0.RELEASE [runtime→compile]
loadData of org.springframework#spring-tuple;1.0.0.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE [runtime→runtime()]
loadData of org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE [runtime→compile]
loadData of org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.retry#spring-retry;1.2.2.RELEASE [runtime→runtime()]
loadData of org.springframework.retry#spring-retry;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE→org.springframework.retry#spring-retry;1.2.2.RELEASE [runtime→compile]
loadData of org.springframework.retry#spring-retry;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [compile→master]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.16.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-test;4.3.15.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-test;4.3.17.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-bus/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-bus/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [compile→master()]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [compile→compile()]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE→org.apache.httpcomponents#httpclient;4.5.2 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpclient;4.5.2 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE→org.apache.httpcomponents#httpclient;4.5.5 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE→org.apache.httpcomponents#httpclient;4.5.5 [runtime→compile]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE→org.apache.httpcomponents#httpcore;4.4.5 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpcore;4.4.5 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE→org.apache.httpcomponents#httpcore;4.4.9 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE→org.apache.httpcomponents#httpcore;4.4.9 [runtime→compile]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→com.ecwid.consul#consul-api;1.3.0 [runtime→runtime()]
loadData of com.ecwid.consul#consul-api;1.3.0 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→com.ecwid.consul#consul-api;1.3.0 [runtime→compile]
loadData of com.ecwid.consul#consul-api;1.3.0 of rootConf=default
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.8.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.code.gson#gson;2.3.1 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpcore;4.4.8 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpcore;4.4.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.8.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→com.google.code.gson#gson;2.3.1 [runtime→runtime()]
loadData of com.google.code.gson#gson;2.3.1 of rootConf=default
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→com.google.code.gson#gson;2.3.1 [runtime→compile]
loadData of com.google.code.gson#gson;2.3.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→org.apache.httpcomponents#httpcore;4.4.5 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpcore;4.4.5 of rootConf=default
default is evicted. Skip loading
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→org.apache.httpcomponents#httpcore;4.4.9 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→org.apache.httpcomponents#httpcore;4.4.9 [runtime→compile]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→org.apache.httpcomponents#httpclient;4.5.2 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpclient;4.5.2 of rootConf=default
default is evicted. Skip loading
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→org.apache.httpcomponents#httpclient;4.5.5 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.ecwid.consul#consul-api;1.3.0→org.apache.httpcomponents#httpclient;4.5.5 [runtime→compile]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→com.google.code.gson#gson;2.3.1 [runtime→runtime()]
loadData of com.google.code.gson#gson;2.3.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→com.google.code.gson#gson;2.3.1 [runtime→compile]
loadData of com.google.code.gson#gson;2.3.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.apache.httpcomponents#httpclient;4.5.2 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpclient;4.5.2 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.apache.httpcomponents#httpclient;4.5.5 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.apache.httpcomponents#httpclient;4.5.5 [runtime→compile]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.apache.httpcomponents#httpcore;4.4.5 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpcore;4.4.5 of rootConf=default
default is evicted. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.apache.httpcomponents#httpcore;4.4.9 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE→org.apache.httpcomponents#httpcore;4.4.9 [runtime→compile]
loadData of org.apache.httpcomponents#httpcore;4.4.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [runtime→runtime()]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [runtime→compile]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-consul-config/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-consul-config/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-consul-config/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-consul-config/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-consul-discovery/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-consul-discovery/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-consul-discovery/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-consul-discovery/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-ribbon/ivy-1.4.5.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-ribbon/ivy-1.4.5.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE
found org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-netflix-ribbon/ivy-1.4.5.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-netflix-ribbon/ivy-1.4.5.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE
found org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon;2.2.5 [compile→master()]
loadData of com.netflix.ribbon#ribbon;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon;2.2.5 [compile→compile()]
loadData of com.netflix.ribbon#ribbon;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon-core;2.2.5 [compile→master()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon-core;2.2.5 [compile→compile()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon-httpclient;2.2.5 [compile→master()]
loadData of com.netflix.ribbon#ribbon-httpclient;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon-httpclient;2.2.5 [compile→compile()]
loadData of com.netflix.ribbon#ribbon-httpclient;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [compile→master()]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [compile→compile()]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→io.reactivex#rxjava;1.2.0 [compile→master()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→io.reactivex#rxjava;1.2.0 [compile→compile()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→joda-time#joda-time;2.7 [compile→master()]
loadData of joda-time#joda-time;2.7 of rootConf=default
using downloadGrapes to resolve joda-time#joda-time;2.7
downloadGrapes: Checking cache for: dependency: joda-time#joda-time;2.7 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/joda-time/joda-time/ivy-2.7.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for joda-time#joda-time;2.7 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/joda-time/joda-time/ivy-2.7.xml
downloadGrapes: module revision found in cache: joda-time#joda-time;2.7
found joda-time#joda-time;2.7 in localm2
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→joda-time#joda-time;2.7 [compile→compile()]
loadData of joda-time#joda-time;2.7 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon-httpclient;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-httpclient;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon-httpclient;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-httpclient;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→io.reactivex#rxjava;1.2.0 [runtime→runtime()]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE→io.reactivex#rxjava;1.2.0 [runtime→compile]
loadData of io.reactivex#rxjava;1.2.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→joda-time#joda-time;2.7 [runtime→runtime()]
loadData of joda-time#joda-time;2.7 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→joda-time#joda-time;2.7 [runtime→compile]
loadData of joda-time#joda-time;2.7 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-security/ivy-1.2.3.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-security/ivy-1.2.3.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE
found org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE in jcenter
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-security/ivy-1.2.3.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-security/ivy-1.2.3.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE
found org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE→org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-security/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-security/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE
found org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE→org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework.security#spring-security-config;4.2.7.RELEASE [compile→master()]
loadData of org.springframework.security#spring-security-config;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework.security#spring-security-config;4.2.7.RELEASE [compile→compile()]
loadData of org.springframework.security#spring-security-config;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework.security#spring-security-web;4.2.7.RELEASE [compile→master()]
loadData of org.springframework.security#spring-security-web;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework.security#spring-security-web;4.2.7.RELEASE [compile→compile()]
loadData of org.springframework.security#spring-security-web;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE→org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE→org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework.security#spring-security-config;4.2.7.RELEASE [runtime→runtime()]
loadData of org.springframework.security#spring-security-config;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework.security#spring-security-config;4.2.7.RELEASE [runtime→compile]
loadData of org.springframework.security#spring-security-config;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework.security#spring-security-web;4.2.7.RELEASE [runtime→runtime()]
loadData of org.springframework.security#spring-security-web;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE→org.springframework.security#spring-security-web;4.2.7.RELEASE [runtime→compile]
loadData of org.springframework.security#spring-security-web;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-aws/ivy-1.2.3.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-aws/ivy-1.2.3.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE
found org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE in jcenter
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-aws-context/ivy-1.2.3.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-aws-context/ivy-1.2.3.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE
found org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-aws-core/ivy-1.2.3.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-aws-core/ivy-1.2.3.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE
found org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-core;1.11.125 [compile→master()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
using downloadGrapes to resolve com.amazonaws#aws-java-sdk-core;1.11.125
downloadGrapes: Checking cache for: dependency: com.amazonaws#aws-java-sdk-core;1.11.125 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.amazonaws/aws-java-sdk-core/ivy-1.11.125.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.amazonaws#aws-java-sdk-core;1.11.125 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.amazonaws/aws-java-sdk-core/ivy-1.11.125.xml
downloadGrapes: module revision found in cache: com.amazonaws#aws-java-sdk-core;1.11.125
found com.amazonaws#aws-java-sdk-core;1.11.125 in localm2
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-core;1.11.125 [compile→compile()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→commons-logging#commons-logging;1.1.3 [compile→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
loadData of commons-logging#commons-logging;1.1.3 of rootConf=default
default is evicted. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→commons-logging#commons-logging;1.2 [compile→master()]
loadData of commons-logging#commons-logging;1.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→commons-logging#commons-logging;1.1.3 [compile→compile()]
loadData of commons-logging#commons-logging;1.1.3 of rootConf=default
default is evicted. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→commons-logging#commons-logging;1.2 [compile→compile()]
loadData of commons-logging#commons-logging;1.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→org.apache.httpcomponents#httpclient;4.5.5 [compile→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→org.apache.httpcomponents#httpclient;4.5.5 [compile→compile()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→software.amazon.ion#ion-java;1.0.2 [compile→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
loadData of software.amazon.ion#ion-java;1.0.2 of rootConf=default
using downloadGrapes to resolve software.amazon.ion#ion-java;1.0.2
downloadGrapes: Checking cache for: dependency: software.amazon.ion#ion-java;1.0.2 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/software.amazon.ion/ion-java/ivy-1.0.2.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for software.amazon.ion#ion-java;1.0.2 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/software.amazon.ion/ion-java/ivy-1.0.2.xml
downloadGrapes: module revision found in cache: software.amazon.ion#ion-java;1.0.2
found software.amazon.ion#ion-java;1.0.2 in localm2
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→software.amazon.ion#ion-java;1.0.2 [compile→compile()]
loadData of software.amazon.ion#ion-java;1.0.2 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 [compile→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 of rootConf=default
using downloadGrapes to resolve com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11
downloadGrapes: Checking cache for: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.dataformat/jackson-dataformat-cbor/ivy-2.8.11.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.dataformat/jackson-dataformat-cbor/ivy-2.8.11.xml
downloadGrapes: module revision found in cache: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11
found com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 in localm2
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {test=[runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {test=[runtime(), master()]}
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 [compile→compile()]
loadData of com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {test=[runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {test=[runtime(), master()]}
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11→com.fasterxml.jackson.core#jackson-core;2.8.11 [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {test=[runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {test=[runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {test=[runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {test=[runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11→com.fasterxml.jackson.core#jackson-core;2.8.11 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→joda-time#joda-time;2.9.9 [compile→master()]
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
loadData of joda-time#joda-time;2.9.9 of rootConf=default
using downloadGrapes to resolve joda-time#joda-time;2.9.9
downloadGrapes: Checking cache for: dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/joda-time/joda-time/ivy-2.9.9.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for joda-time#joda-time;2.9.9 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/joda-time/joda-time/ivy-2.9.9.xml
downloadGrapes: module revision found in cache: joda-time#joda-time;2.9.9
found joda-time#joda-time;2.9.9 in localm2
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→joda-time#joda-time;2.9.9 [compile→compile()]
loadData of joda-time#joda-time;2.9.9 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→joda-time#joda-time;2.9.9 [compile→runtime()]
loadData of joda-time#joda-time;2.9.9 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→joda-time#joda-time;2.9.9 [compile→compile]
loadData of joda-time#joda-time;2.9.9 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-s3;1.11.125 [compile→master()]
loadData of com.amazonaws#aws-java-sdk-s3;1.11.125 of rootConf=default
using downloadGrapes to resolve com.amazonaws#aws-java-sdk-s3;1.11.125
downloadGrapes: Checking cache for: dependency: com.amazonaws#aws-java-sdk-s3;1.11.125 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.amazonaws/aws-java-sdk-s3/ivy-1.11.125.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.amazonaws#aws-java-sdk-s3;1.11.125 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.amazonaws/aws-java-sdk-s3/ivy-1.11.125.xml
downloadGrapes: module revision found in cache: com.amazonaws#aws-java-sdk-s3;1.11.125
found com.amazonaws#aws-java-sdk-s3;1.11.125 in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-s3;1.11.125 [compile→compile()]
loadData of com.amazonaws#aws-java-sdk-s3;1.11.125 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-s3;1.11.125→com.amazonaws#aws-java-sdk-kms;1.11.125 [compile→master()]
loadData of com.amazonaws#aws-java-sdk-kms;1.11.125 of rootConf=default
using downloadGrapes to resolve com.amazonaws#aws-java-sdk-kms;1.11.125
downloadGrapes: Checking cache for: dependency: com.amazonaws#aws-java-sdk-kms;1.11.125 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.amazonaws/aws-java-sdk-kms/ivy-1.11.125.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.amazonaws#aws-java-sdk-kms;1.11.125 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.amazonaws/aws-java-sdk-kms/ivy-1.11.125.xml
downloadGrapes: module revision found in cache: com.amazonaws#aws-java-sdk-kms;1.11.125
found com.amazonaws#aws-java-sdk-kms;1.11.125 in localm2
== resolving dependencies com.amazonaws#aws-java-sdk-s3;1.11.125→com.amazonaws#aws-java-sdk-kms;1.11.125 [compile→compile()]
loadData of com.amazonaws#aws-java-sdk-kms;1.11.125 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-kms;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [compile→master()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-kms;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [compile→compile()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-kms;1.11.125→com.amazonaws#jmespath-java;1.11.125 [compile→master()]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
using downloadGrapes to resolve com.amazonaws#jmespath-java;1.11.125
downloadGrapes: Checking cache for: dependency: com.amazonaws#jmespath-java;1.11.125 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.amazonaws/jmespath-java/ivy-1.11.125.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.amazonaws#jmespath-java;1.11.125 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.amazonaws/jmespath-java/ivy-1.11.125.xml
downloadGrapes: module revision found in cache: com.amazonaws#jmespath-java;1.11.125
found com.amazonaws#jmespath-java;1.11.125 in localm2
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.amazonaws#aws-java-sdk-kms;1.11.125→com.amazonaws#jmespath-java;1.11.125 [compile→compile()]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.amazonaws#jmespath-java;1.11.125→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#jmespath-java;1.11.125→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-s3;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [compile→master()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-s3;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [compile→compile()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-s3;1.11.125→com.amazonaws#jmespath-java;1.11.125 [compile→master()]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-s3;1.11.125→com.amazonaws#jmespath-java;1.11.125 [compile→compile()]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-ec2;1.11.125 [compile→master()]
loadData of com.amazonaws#aws-java-sdk-ec2;1.11.125 of rootConf=default
using downloadGrapes to resolve com.amazonaws#aws-java-sdk-ec2;1.11.125
downloadGrapes: Checking cache for: dependency: com.amazonaws#aws-java-sdk-ec2;1.11.125 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.amazonaws/aws-java-sdk-ec2/ivy-1.11.125.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.amazonaws#aws-java-sdk-ec2;1.11.125 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.amazonaws/aws-java-sdk-ec2/ivy-1.11.125.xml
downloadGrapes: module revision found in cache: com.amazonaws#aws-java-sdk-ec2;1.11.125
found com.amazonaws#aws-java-sdk-ec2;1.11.125 in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-ec2;1.11.125 [compile→compile()]
loadData of com.amazonaws#aws-java-sdk-ec2;1.11.125 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-ec2;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [compile→master()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-ec2;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [compile→compile()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-ec2;1.11.125→com.amazonaws#jmespath-java;1.11.125 [compile→master()]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-ec2;1.11.125→com.amazonaws#jmespath-java;1.11.125 [compile→compile()]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-cloudformation;1.11.125 [compile→master()]
loadData of com.amazonaws#aws-java-sdk-cloudformation;1.11.125 of rootConf=default
using downloadGrapes to resolve com.amazonaws#aws-java-sdk-cloudformation;1.11.125
downloadGrapes: Checking cache for: dependency: com.amazonaws#aws-java-sdk-cloudformation;1.11.125 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.amazonaws/aws-java-sdk-cloudformation/ivy-1.11.125.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.amazonaws#aws-java-sdk-cloudformation;1.11.125 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.amazonaws/aws-java-sdk-cloudformation/ivy-1.11.125.xml
downloadGrapes: module revision found in cache: com.amazonaws#aws-java-sdk-cloudformation;1.11.125
found com.amazonaws#aws-java-sdk-cloudformation;1.11.125 in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-cloudformation;1.11.125 [compile→compile()]
loadData of com.amazonaws#aws-java-sdk-cloudformation;1.11.125 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-cloudformation;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [compile→master()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-cloudformation;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [compile→compile()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-cloudformation;1.11.125→com.amazonaws#jmespath-java;1.11.125 [compile→master()]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-cloudformation;1.11.125→com.amazonaws#jmespath-java;1.11.125 [compile→compile()]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [compile→master()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [compile→master()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→org.springframework#spring-aop;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-aop;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-core;1.11.125 [runtime→runtime()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-core;1.11.125 [runtime→compile]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.5.2 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.8.1 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: joda-time#joda-time;2.9.9 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→commons-logging#commons-logging;1.1.3 [runtime→runtime()]
loadData of commons-logging#commons-logging;1.1.3 of rootConf=default
default is evicted. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→commons-logging#commons-logging;1.2 [runtime→runtime()]
loadData of commons-logging#commons-logging;1.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→commons-logging#commons-logging;1.2 [runtime→compile]
loadData of commons-logging#commons-logging;1.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→org.apache.httpcomponents#httpclient;4.5.5 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→org.apache.httpcomponents#httpclient;4.5.5 [runtime→compile]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→software.amazon.ion#ion-java;1.0.2 [runtime→runtime()]
loadData of software.amazon.ion#ion-java;1.0.2 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→software.amazon.ion#ion-java;1.0.2 [runtime→compile]
loadData of software.amazon.ion#ion-java;1.0.2 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 [runtime→runtime()]
loadData of com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 [runtime→compile]
loadData of com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {test=[runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {test=[runtime(), master()]}
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→joda-time#joda-time;2.9.9 [runtime→runtime()]
loadData of joda-time#joda-time;2.9.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-core;1.11.125→joda-time#joda-time;2.9.9 [runtime→compile]
loadData of joda-time#joda-time;2.9.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-s3;1.11.125 [runtime→runtime()]
loadData of com.amazonaws#aws-java-sdk-s3;1.11.125 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-s3;1.11.125 [runtime→compile]
loadData of com.amazonaws#aws-java-sdk-s3;1.11.125 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-s3;1.11.125→com.amazonaws#aws-java-sdk-kms;1.11.125 [runtime→runtime()]
loadData of com.amazonaws#aws-java-sdk-kms;1.11.125 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-s3;1.11.125→com.amazonaws#aws-java-sdk-kms;1.11.125 [runtime→compile]
loadData of com.amazonaws#aws-java-sdk-kms;1.11.125 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-kms;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [runtime→runtime()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-kms;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [runtime→compile]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-kms;1.11.125→com.amazonaws#jmespath-java;1.11.125 [runtime→runtime()]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-kms;1.11.125→com.amazonaws#jmespath-java;1.11.125 [runtime→compile]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.6.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.amazonaws#jmespath-java;1.11.125→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#jmespath-java;1.11.125→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-s3;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [runtime→runtime()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-s3;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [runtime→compile]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-s3;1.11.125→com.amazonaws#jmespath-java;1.11.125 [runtime→runtime()]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-s3;1.11.125→com.amazonaws#jmespath-java;1.11.125 [runtime→compile]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-ec2;1.11.125 [runtime→runtime()]
loadData of com.amazonaws#aws-java-sdk-ec2;1.11.125 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-ec2;1.11.125 [runtime→compile]
loadData of com.amazonaws#aws-java-sdk-ec2;1.11.125 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-ec2;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [runtime→runtime()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-ec2;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [runtime→compile]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-ec2;1.11.125→com.amazonaws#jmespath-java;1.11.125 [runtime→runtime()]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-ec2;1.11.125→com.amazonaws#jmespath-java;1.11.125 [runtime→compile]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-cloudformation;1.11.125 [runtime→runtime()]
loadData of com.amazonaws#aws-java-sdk-cloudformation;1.11.125 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→com.amazonaws#aws-java-sdk-cloudformation;1.11.125 [runtime→compile]
loadData of com.amazonaws#aws-java-sdk-cloudformation;1.11.125 of rootConf=default
== resolving dependencies com.amazonaws#aws-java-sdk-cloudformation;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [runtime→runtime()]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-cloudformation;1.11.125→com.amazonaws#aws-java-sdk-core;1.11.125 [runtime→compile]
loadData of com.amazonaws#aws-java-sdk-core;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-cloudformation;1.11.125→com.amazonaws#jmespath-java;1.11.125 [runtime→runtime()]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.amazonaws#aws-java-sdk-cloudformation;1.11.125→com.amazonaws#jmespath-java;1.11.125 [runtime→compile]
loadData of com.amazonaws#jmespath-java;1.11.125 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-aws-autoconfigure/ivy-1.2.3.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-aws-autoconfigure/ivy-1.2.3.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE
found org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [compile→master()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [compile→master()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-netflix-eureka-client/ivy-1.4.5.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-netflix-eureka-client/ivy-1.4.5.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE
found org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE in localm2
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-netflix-eureka-client/ivy-1.4.5.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-netflix-eureka-client/ivy-1.4.5.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE
found org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.eureka#eureka-client;1.7.2 [compile→master()]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
using downloadGrapes to resolve com.netflix.eureka#eureka-client;1.7.2
downloadGrapes: Checking cache for: dependency: com.netflix.eureka#eureka-client;1.7.2 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.eureka/eureka-client/ivy-1.7.2.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.eureka#eureka-client;1.7.2 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.eureka/eureka-client/ivy-1.7.2.xml
downloadGrapes: module revision found in cache: com.netflix.eureka#eureka-client;1.7.2
found com.netflix.eureka#eureka-client;1.7.2 in localm2
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.eureka#eureka-client;1.7.2 [compile→compile()]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.eureka#eureka-client;1.7.2 [compile→runtime()]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.eureka#eureka-client;1.7.2 [compile→compile]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→org.codehaus.jettison#jettison;1.3.7 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of org.codehaus.jettison#jettison;1.3.7 of rootConf=default
using downloadGrapes to resolve org.codehaus.jettison#jettison;1.3.7
downloadGrapes: Checking cache for: dependency: org.codehaus.jettison#jettison;1.3.7 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.codehaus.jettison/jettison/ivy-1.3.7.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.codehaus.jettison#jettison;1.3.7 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.codehaus.jettison/jettison/ivy-1.3.7.xml
downloadGrapes: module revision found in cache: org.codehaus.jettison#jettison;1.3.7
found org.codehaus.jettison#jettison;1.3.7 in localm2
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→org.codehaus.jettison#jettison;1.3.7 [runtime→runtime()]
loadData of org.codehaus.jettison#jettison;1.3.7 of rootConf=default
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→org.codehaus.jettison#jettison;1.3.7 [runtime→compile]
loadData of org.codehaus.jettison#jettison;1.3.7 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.codehaus.jettison#jettison;1.3.7→stax#stax-api;1.0.1 [compile→master()]
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of stax#stax-api;1.0.1 of rootConf=default
using downloadGrapes to resolve stax#stax-api;1.0.1
downloadGrapes: Checking cache for: dependency: stax#stax-api;1.0.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/stax/stax-api/ivy-1.0.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for stax#stax-api;1.0.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/stax/stax-api/ivy-1.0.1.xml
downloadGrapes: module revision found in cache: stax#stax-api;1.0.1
found stax#stax-api;1.0.1 in localm2
== resolving dependencies org.codehaus.jettison#jettison;1.3.7→stax#stax-api;1.0.1 [compile→compile()]
loadData of stax#stax-api;1.0.1 of rootConf=default
== resolving dependencies org.codehaus.jettison#jettison;1.3.7→stax#stax-api;1.0.1 [compile→runtime()]
loadData of stax#stax-api;1.0.1 of rootConf=default
== resolving dependencies org.codehaus.jettison#jettison;1.3.7→stax#stax-api;1.0.1 [compile→compile]
loadData of stax#stax-api;1.0.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.codehaus.jettison#jettison;1.3.7→stax#stax-api;1.0.1 [runtime→runtime()]
loadData of stax#stax-api;1.0.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.codehaus.jettison#jettison;1.3.7→stax#stax-api;1.0.1 [runtime→compile]
loadData of stax#stax-api;1.0.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→org.codehaus.jettison#jettison;1.3.7 [runtime→compile()]
loadData of org.codehaus.jettison#jettison;1.3.7 of rootConf=default
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.netflix.netflix-commons#netflix-eventbus;0.3.0 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.netflix.netflix-commons#netflix-eventbus;0.3.0 of rootConf=default
using downloadGrapes to resolve com.netflix.netflix-commons#netflix-eventbus;0.3.0
downloadGrapes: Checking cache for: dependency: com.netflix.netflix-commons#netflix-eventbus;0.3.0 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.netflix-commons/netflix-eventbus/ivy-0.3.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.netflix-commons#netflix-eventbus;0.3.0 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.netflix-commons/netflix-eventbus/ivy-0.3.0.xml
downloadGrapes: module revision found in cache: com.netflix.netflix-commons#netflix-eventbus;0.3.0
found com.netflix.netflix-commons#netflix-eventbus;0.3.0 in localm2
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.netflix.netflix-commons#netflix-eventbus;0.3.0 [runtime→runtime()]
loadData of com.netflix.netflix-commons#netflix-eventbus;0.3.0 of rootConf=default
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.netflix.netflix-commons#netflix-eventbus;0.3.0 [runtime→compile]
loadData of com.netflix.netflix-commons#netflix-eventbus;0.3.0 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→org.slf4j#slf4j-api;1.7.25 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→org.slf4j#slf4j-api;1.7.25 [runtime→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→com.netflix.netflix-commons#netflix-infix;0.3.0 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.netflix.netflix-commons#netflix-infix;0.3.0 of rootConf=default
using downloadGrapes to resolve com.netflix.netflix-commons#netflix-infix;0.3.0
downloadGrapes: Checking cache for: dependency: com.netflix.netflix-commons#netflix-infix;0.3.0 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.netflix-commons/netflix-infix/ivy-0.3.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.netflix-commons#netflix-infix;0.3.0 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.netflix-commons/netflix-infix/ivy-0.3.0.xml
downloadGrapes: module revision found in cache: com.netflix.netflix-commons#netflix-infix;0.3.0
found com.netflix.netflix-commons#netflix-infix;0.3.0 in localm2
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→com.netflix.netflix-commons#netflix-infix;0.3.0 [runtime→runtime()]
loadData of com.netflix.netflix-commons#netflix-infix;0.3.0 of rootConf=default
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→com.netflix.netflix-commons#netflix-infix;0.3.0 [runtime→compile]
loadData of com.netflix.netflix-commons#netflix-infix;0.3.0 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.google.code.findbugs#jsr305;3.0.1 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→org.slf4j#slf4j-api;1.7.25 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.google.code.findbugs#jsr305;3.0.1 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→org.slf4j#slf4j-api;1.7.25 [runtime→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→commons-jxpath#commons-jxpath;1.3 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.google.code.findbugs#jsr305;3.0.1 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of commons-jxpath#commons-jxpath;1.3 of rootConf=default
using downloadGrapes to resolve commons-jxpath#commons-jxpath;1.3
downloadGrapes: Checking cache for: dependency: commons-jxpath#commons-jxpath;1.3 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/commons-jxpath/commons-jxpath/ivy-1.3.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for commons-jxpath#commons-jxpath;1.3 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/commons-jxpath/commons-jxpath/ivy-1.3.xml
downloadGrapes: module revision found in cache: commons-jxpath#commons-jxpath;1.3
found commons-jxpath#commons-jxpath;1.3 in localm2
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: xml-apis#xml-apis;1.3.04 {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: xml-apis#xml-apis;1.4.01 {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-beanutils#commons-beanutils;1.7.0 {optional=[compile(), master()]} ⇒ dependency: commons-beanutils#commons-beanutils;1.9.3 {optional=[compile(), master()]}
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→commons-jxpath#commons-jxpath;1.3 [runtime→runtime()]
loadData of commons-jxpath#commons-jxpath;1.3 of rootConf=default
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→commons-jxpath#commons-jxpath;1.3 [runtime→compile]
loadData of commons-jxpath#commons-jxpath;1.3 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: xml-apis#xml-apis;1.3.04 {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: xml-apis#xml-apis;1.4.01 {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-beanutils#commons-beanutils;1.7.0 {optional=[compile(), master()]} ⇒ dependency: commons-beanutils#commons-beanutils;1.9.3 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: xml-apis#xml-apis;1.3.04 {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: xml-apis#xml-apis;1.4.01 {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: commons-beanutils#commons-beanutils;1.7.0 {optional=[compile(), master()]} ⇒ dependency: commons-beanutils#commons-beanutils;1.9.3 {optional=[compile(), master()]}
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→commons-jxpath#commons-jxpath;1.3 [runtime→compile()]
loadData of commons-jxpath#commons-jxpath;1.3 of rootConf=default
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→joda-time#joda-time;2.9.9 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.google.code.findbugs#jsr305;3.0.1 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of joda-time#joda-time;2.9.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→joda-time#joda-time;2.9.9 [runtime→runtime()]
loadData of joda-time#joda-time;2.9.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→joda-time#joda-time;2.9.9 [runtime→compile]
loadData of joda-time#joda-time;2.9.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→joda-time#joda-time;2.9.9 [runtime→compile()]
loadData of joda-time#joda-time;2.9.9 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→org.antlr#antlr-runtime;3.4 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.google.code.findbugs#jsr305;3.0.1 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of org.antlr#antlr-runtime;3.4 of rootConf=default
using downloadGrapes to resolve org.antlr#antlr-runtime;3.4
downloadGrapes: Checking cache for: dependency: org.antlr#antlr-runtime;3.4 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.antlr/antlr-runtime/ivy-3.4.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.antlr#antlr-runtime;3.4 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.antlr/antlr-runtime/ivy-3.4.xml
downloadGrapes: module revision found in cache: org.antlr#antlr-runtime;3.4
found org.antlr#antlr-runtime;3.4 in localm2
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→org.antlr#antlr-runtime;3.4 [runtime→runtime()]
loadData of org.antlr#antlr-runtime;3.4 of rootConf=default
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→org.antlr#antlr-runtime;3.4 [runtime→compile]
loadData of org.antlr#antlr-runtime;3.4 of rootConf=default
== resolving dependencies org.antlr#antlr-runtime;3.4→org.antlr#stringtemplate;3.2.1 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.google.code.findbugs#jsr305;3.0.1 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of org.antlr#stringtemplate;3.2.1 of rootConf=default
using downloadGrapes to resolve org.antlr#stringtemplate;3.2.1
downloadGrapes: Checking cache for: dependency: org.antlr#stringtemplate;3.2.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.antlr/stringtemplate/ivy-3.2.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.antlr#stringtemplate;3.2.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.antlr/stringtemplate/ivy-3.2.1.xml
downloadGrapes: module revision found in cache: org.antlr#stringtemplate;3.2.1
found org.antlr#stringtemplate;3.2.1 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.5 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.antlr#antlr-runtime;3.4→org.antlr#stringtemplate;3.2.1 [compile→compile()]
loadData of org.antlr#stringtemplate;3.2.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.5 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.antlr#stringtemplate;3.2.1→antlr#antlr;2.7.7 [compile→master()]
dependency descriptor has been mediated: dependency: junit#junit;4.5 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.5 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.5 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.5 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.5 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.google.code.findbugs#jsr305;3.0.1 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of antlr#antlr;2.7.7 of rootConf=default
using downloadGrapes to resolve antlr#antlr;2.7.7
downloadGrapes: Checking cache for: dependency: antlr#antlr;2.7.7 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/antlr/antlr/ivy-2.7.7.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for antlr#antlr;2.7.7 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/antlr/antlr/ivy-2.7.7.xml
downloadGrapes: module revision found in cache: antlr#antlr;2.7.7
found antlr#antlr;2.7.7 in localm2
== resolving dependencies org.antlr#stringtemplate;3.2.1→antlr#antlr;2.7.7 [compile→compile()]
loadData of antlr#antlr;2.7.7 of rootConf=default
== resolving dependencies org.antlr#stringtemplate;3.2.1→antlr#antlr;2.7.7 [compile→runtime()]
loadData of antlr#antlr;2.7.7 of rootConf=default
== resolving dependencies org.antlr#stringtemplate;3.2.1→antlr#antlr;2.7.7 [compile→compile]
loadData of antlr#antlr;2.7.7 of rootConf=default
== resolving dependencies org.antlr#antlr-runtime;3.4→org.antlr#stringtemplate;3.2.1 [compile→runtime()]
loadData of org.antlr#stringtemplate;3.2.1 of rootConf=default
== resolving dependencies org.antlr#antlr-runtime;3.4→org.antlr#stringtemplate;3.2.1 [compile→compile]
loadData of org.antlr#stringtemplate;3.2.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.5 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.antlr#stringtemplate;3.2.1→antlr#antlr;2.7.7 [runtime→runtime()]
loadData of antlr#antlr;2.7.7 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.antlr#stringtemplate;3.2.1→antlr#antlr;2.7.7 [runtime→compile]
loadData of antlr#antlr;2.7.7 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.antlr#antlr-runtime;3.4→antlr#antlr;2.7.7 [compile→master()]
loadData of antlr#antlr;2.7.7 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.antlr#antlr-runtime;3.4→antlr#antlr;2.7.7 [compile→compile()]
loadData of antlr#antlr;2.7.7 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.antlr#antlr-runtime;3.4→org.antlr#stringtemplate;3.2.1 [runtime→runtime()]
loadData of org.antlr#stringtemplate;3.2.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.antlr#antlr-runtime;3.4→org.antlr#stringtemplate;3.2.1 [runtime→compile]
loadData of org.antlr#stringtemplate;3.2.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.antlr#antlr-runtime;3.4→antlr#antlr;2.7.7 [runtime→runtime()]
loadData of antlr#antlr;2.7.7 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.antlr#antlr-runtime;3.4→antlr#antlr;2.7.7 [runtime→compile]
loadData of antlr#antlr;2.7.7 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→org.antlr#antlr-runtime;3.4 [runtime→compile()]
loadData of org.antlr#antlr-runtime;3.4 of rootConf=default
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→com.google.guava#guava;18.0 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.google.code.findbugs#jsr305;3.0.1 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→com.google.guava#guava;18.0 [runtime→runtime()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→com.google.guava#guava;18.0 [runtime→compile]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→com.google.guava#guava;18.0 [runtime→compile()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→com.google.code.gson#gson;2.8.5 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.google.code.findbugs#jsr305;3.0.1 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;2.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;14.0.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.code.gson#gson;2.1 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.google.code.gson#gson;2.8.5 of rootConf=default
using downloadGrapes to resolve com.google.code.gson#gson;2.8.5
downloadGrapes: Checking cache for: dependency: com.google.code.gson#gson;2.8.5 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.google.code.gson/gson/ivy-2.8.5.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.google.code.gson#gson;2.8.5 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.google.code.gson/gson/ivy-2.8.5.xml
downloadGrapes: module revision found in cache: com.google.code.gson#gson;2.8.5
found com.google.code.gson#gson;2.8.5 in localm2
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→com.google.code.gson#gson;2.8.5 [runtime→runtime()]
loadData of com.google.code.gson#gson;2.8.5 of rootConf=default
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→com.google.code.gson#gson;2.8.5 [runtime→compile]
loadData of com.google.code.gson#gson;2.8.5 of rootConf=default
== resolving dependencies com.netflix.netflix-commons#netflix-infix;0.3.0→com.google.code.gson#gson;2.8.5 [runtime→compile()]
loadData of com.google.code.gson#gson;2.8.5 of rootConf=default
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→com.netflix.netflix-commons#netflix-infix;0.3.0 [runtime→compile()]
loadData of com.netflix.netflix-commons#netflix-infix;0.3.0 of rootConf=default
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→com.netflix.servo#servo-core;0.10.1 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→com.netflix.servo#servo-core;0.10.1 [runtime→runtime()]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→com.netflix.servo#servo-core;0.10.1 [runtime→compile]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→com.netflix.servo#servo-core;0.10.1 [runtime→compile()]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→com.netflix.archaius#archaius-core;0.7.4 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→com.netflix.archaius#archaius-core;0.7.4 [runtime→runtime()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→org.apache.commons#commons-math;2.2 [runtime→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.servo#servo-core;0.5.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.servo#servo-core;0.10.1 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.3.3 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of org.apache.commons#commons-math;2.2 of rootConf=default
using downloadGrapes to resolve org.apache.commons#commons-math;2.2
downloadGrapes: Checking cache for: dependency: org.apache.commons#commons-math;2.2 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.apache.commons/commons-math/ivy-2.2.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.apache.commons#commons-math;2.2 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.apache.commons/commons-math/ivy-2.2.xml
downloadGrapes: module revision found in cache: org.apache.commons#commons-math;2.2
found org.apache.commons#commons-math;2.2 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.4 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→org.apache.commons#commons-math;2.2 [runtime→runtime()]
loadData of org.apache.commons#commons-math;2.2 of rootConf=default
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→org.apache.commons#commons-math;2.2 [runtime→compile]
loadData of org.apache.commons#commons-math;2.2 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.4 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.4 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.netflix.netflix-commons#netflix-eventbus;0.3.0→org.apache.commons#commons-math;2.2 [runtime→compile()]
loadData of org.apache.commons#commons-math;2.2 of rootConf=default
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.netflix.netflix-commons#netflix-eventbus;0.3.0 [runtime→compile()]
loadData of com.netflix.netflix-commons#netflix-eventbus;0.3.0 of rootConf=default
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.thoughtworks.xstream#xstream;1.4.10 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
using downloadGrapes to resolve com.thoughtworks.xstream#xstream;1.4.10
downloadGrapes: Checking cache for: dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.thoughtworks.xstream/xstream/ivy-1.4.10.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.thoughtworks.xstream#xstream;1.4.10 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.thoughtworks.xstream/xstream/ivy-1.4.10.xml
downloadGrapes: module revision found in cache: com.thoughtworks.xstream#xstream;1.4.10
found com.thoughtworks.xstream#xstream;1.4.10 in localm2
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.thoughtworks.xstream#xstream;1.4.10 [runtime→runtime()]
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.thoughtworks.xstream#xstream;1.4.10 [runtime→compile]
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
== resolving dependencies com.thoughtworks.xstream#xstream;1.4.10→xmlpull#xmlpull;1.1.3.1 [compile→master()]
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of xmlpull#xmlpull;1.1.3.1 of rootConf=default
using downloadGrapes to resolve xmlpull#xmlpull;1.1.3.1
downloadGrapes: Checking cache for: dependency: xmlpull#xmlpull;1.1.3.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/xmlpull/xmlpull/ivy-1.1.3.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for xmlpull#xmlpull;1.1.3.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/xmlpull/xmlpull/ivy-1.1.3.1.xml
downloadGrapes: module revision found in cache: xmlpull#xmlpull;1.1.3.1
found xmlpull#xmlpull;1.1.3.1 in localm2
== resolving dependencies com.thoughtworks.xstream#xstream;1.4.10→xmlpull#xmlpull;1.1.3.1 [compile→compile()]
loadData of xmlpull#xmlpull;1.1.3.1 of rootConf=default
== resolving dependencies com.thoughtworks.xstream#xstream;1.4.10→xmlpull#xmlpull;1.1.3.1 [compile→runtime()]
loadData of xmlpull#xmlpull;1.1.3.1 of rootConf=default
== resolving dependencies com.thoughtworks.xstream#xstream;1.4.10→xmlpull#xmlpull;1.1.3.1 [compile→compile]
loadData of xmlpull#xmlpull;1.1.3.1 of rootConf=default
== resolving dependencies com.thoughtworks.xstream#xstream;1.4.10→xpp3#xpp3_min;1.1.4c [compile→master()]
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of xpp3#xpp3_min;1.1.4c of rootConf=default
using downloadGrapes to resolve xpp3#xpp3_min;1.1.4c
downloadGrapes: Checking cache for: dependency: xpp3#xpp3_min;1.1.4c {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/xpp3/xpp3_min/ivy-1.1.4c.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for xpp3#xpp3_min;1.1.4c (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/xpp3/xpp3_min/ivy-1.1.4c.xml
downloadGrapes: module revision found in cache: xpp3#xpp3_min;1.1.4c
found xpp3#xpp3_min;1.1.4c in localm2
== resolving dependencies com.thoughtworks.xstream#xstream;1.4.10→xpp3#xpp3_min;1.1.4c [compile→compile()]
loadData of xpp3#xpp3_min;1.1.4c of rootConf=default
== resolving dependencies com.thoughtworks.xstream#xstream;1.4.10→xpp3#xpp3_min;1.1.4c [compile→runtime()]
loadData of xpp3#xpp3_min;1.1.4c of rootConf=default
== resolving dependencies com.thoughtworks.xstream#xstream;1.4.10→xpp3#xpp3_min;1.1.4c [compile→compile]
loadData of xpp3#xpp3_min;1.1.4c of rootConf=default
dependency descriptor has been mediated: dependency: org.jdom#jdom2;2.0.5 {optional=[compile(), master()]} ⇒ dependency: org.jdom#jdom2;2.0.6 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: joda-time#joda-time;1.6 {optional=[compile(), master()]} ⇒ dependency: joda-time#joda-time;2.9.9 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.json#json;20080701 {test=[runtime(), master()]} ⇒ dependency: org.json#json;20140107 {test=[runtime(), master()]}
== resolving dependencies com.thoughtworks.xstream#xstream;1.4.10→xmlpull#xmlpull;1.1.3.1 [runtime→runtime()]
loadData of xmlpull#xmlpull;1.1.3.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.thoughtworks.xstream#xstream;1.4.10→xmlpull#xmlpull;1.1.3.1 [runtime→compile]
loadData of xmlpull#xmlpull;1.1.3.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.thoughtworks.xstream#xstream;1.4.10→xpp3#xpp3_min;1.1.4c [runtime→runtime()]
loadData of xpp3#xpp3_min;1.1.4c of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.thoughtworks.xstream#xstream;1.4.10→xpp3#xpp3_min;1.1.4c [runtime→compile]
loadData of xpp3#xpp3_min;1.1.4c of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.thoughtworks.xstream#xstream;1.4.10 [runtime→compile()]
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.netflix.archaius#archaius-core;0.7.4 [runtime→master()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.netflix.archaius#archaius-core;0.7.4 [runtime→runtime()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→javax.ws.rs#jsr311-api;1.1.1 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of javax.ws.rs#jsr311-api;1.1.1 of rootConf=default
using downloadGrapes to resolve javax.ws.rs#jsr311-api;1.1.1
downloadGrapes: Checking cache for: dependency: javax.ws.rs#jsr311-api;1.1.1 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/javax.ws.rs/jsr311-api/ivy-1.1.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for javax.ws.rs#jsr311-api;1.1.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/javax.ws.rs/jsr311-api/ivy-1.1.1.xml
downloadGrapes: module revision found in cache: javax.ws.rs#jsr311-api;1.1.1
found javax.ws.rs#jsr311-api;1.1.1 in localm2
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→javax.ws.rs#jsr311-api;1.1.1 [runtime→runtime()]
loadData of javax.ws.rs#jsr311-api;1.1.1 of rootConf=default
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→javax.ws.rs#jsr311-api;1.1.1 [runtime→compile]
loadData of javax.ws.rs#jsr311-api;1.1.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;3.8.1 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→javax.ws.rs#jsr311-api;1.1.1 [runtime→compile()]
loadData of javax.ws.rs#jsr311-api;1.1.1 of rootConf=default
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.netflix.servo#servo-core;0.10.1 [runtime→master()]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.netflix.servo#servo-core;0.10.1 [runtime→runtime()]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.netflix.servo#servo-core;0.10.1 [runtime→compile]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.netflix.servo#servo-core;0.10.1 [runtime→compile()]
loadData of com.netflix.servo#servo-core;0.10.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.sun.jersey#jersey-core;1.19.1 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.sun.jersey#jersey-core;1.19.1 of rootConf=default
using downloadGrapes to resolve com.sun.jersey#jersey-core;1.19.1
downloadGrapes: Checking cache for: dependency: com.sun.jersey#jersey-core;1.19.1 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.sun.jersey/jersey-core/ivy-1.19.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.sun.jersey#jersey-core;1.19.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.sun.jersey/jersey-core/ivy-1.19.1.xml
downloadGrapes: module revision found in cache: com.sun.jersey#jersey-core;1.19.1
found com.sun.jersey#jersey-core;1.19.1 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.sun.jersey#jersey-core;1.19.1 [runtime→runtime()]
loadData of com.sun.jersey#jersey-core;1.19.1 of rootConf=default
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.sun.jersey#jersey-core;1.19.1 [runtime→compile]
loadData of com.sun.jersey#jersey-core;1.19.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.sun.jersey#jersey-core;1.19.1→javax.ws.rs#jsr311-api;1.1.1 [compile→master()]
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of javax.ws.rs#jsr311-api;1.1.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.sun.jersey#jersey-core;1.19.1→javax.ws.rs#jsr311-api;1.1.1 [compile→compile()]
loadData of javax.ws.rs#jsr311-api;1.1.1 of rootConf=default
default is loaded and no conf to load. Skip loading
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.sun.jersey#jersey-core;1.19.1→javax.ws.rs#jsr311-api;1.1.1 [runtime→runtime()]
loadData of javax.ws.rs#jsr311-api;1.1.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.sun.jersey#jersey-core;1.19.1→javax.ws.rs#jsr311-api;1.1.1 [runtime→compile]
loadData of javax.ws.rs#jsr311-api;1.1.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.sun.jersey#jersey-core;1.19.1 [runtime→compile()]
loadData of com.sun.jersey#jersey-core;1.19.1 of rootConf=default
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.sun.jersey#jersey-client;1.19.1 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.sun.jersey#jersey-client;1.19.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.sun.jersey#jersey-client;1.19.1 [runtime→runtime()]
loadData of com.sun.jersey#jersey-client;1.19.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.sun.jersey#jersey-client;1.19.1 [runtime→compile]
loadData of com.sun.jersey#jersey-client;1.19.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.sun.jersey#jersey-client;1.19.1 [runtime→compile()]
loadData of com.sun.jersey#jersey-client;1.19.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.sun.jersey.contribs#jersey-apache-client4;1.19.1 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.sun.jersey.contribs#jersey-apache-client4;1.19.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.sun.jersey.contribs#jersey-apache-client4;1.19.1 [runtime→runtime()]
loadData of com.sun.jersey.contribs#jersey-apache-client4;1.19.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.sun.jersey.contribs#jersey-apache-client4;1.19.1 [runtime→compile]
loadData of com.sun.jersey.contribs#jersey-apache-client4;1.19.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.sun.jersey.contribs#jersey-apache-client4;1.19.1 [runtime→compile()]
loadData of com.sun.jersey.contribs#jersey-apache-client4;1.19.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→org.apache.httpcomponents#httpclient;4.5.5 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→org.apache.httpcomponents#httpclient;4.5.5 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→org.apache.httpcomponents#httpclient;4.5.5 [runtime→compile]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→org.apache.httpcomponents#httpclient;4.5.5 [runtime→compile()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.google.inject#guice;4.1.0 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.google.inject#guice;4.1.0 of rootConf=default
using downloadGrapes to resolve com.google.inject#guice;4.1.0
downloadGrapes: Checking cache for: dependency: com.google.inject#guice;4.1.0 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.google.inject/guice/ivy-4.1.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.google.inject#guice;4.1.0 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.google.inject/guice/ivy-4.1.0.xml
downloadGrapes: module revision found in cache: com.google.inject#guice;4.1.0
found com.google.inject#guice;4.1.0 in localm2
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.google.inject#guice;4.1.0 [runtime→runtime()]
loadData of com.google.inject#guice;4.1.0 of rootConf=default
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.google.inject#guice;4.1.0 [runtime→compile]
loadData of com.google.inject#guice;4.1.0 of rootConf=default
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.google.inject#guice;4.1.0→javax.inject#javax.inject;1 [compile→master()]
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.google.inject#guice;4.1.0→javax.inject#javax.inject;1 [compile→compile()]
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.google.inject#guice;4.1.0→aopalliance#aopalliance;1.0 [compile→master()]
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of aopalliance#aopalliance;1.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.google.inject#guice;4.1.0→aopalliance#aopalliance;1.0 [compile→compile()]
loadData of aopalliance#aopalliance;1.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.google.inject#guice;4.1.0→com.google.guava#guava;18.0 [compile→master()]
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.google.inject#guice;4.1.0→com.google.guava#guava;18.0 [compile→compile()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
dependency descriptor has been mediated: dependency: com.google.guava#guava;19.0 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.google.guava#guava;18.0 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-beans;3.0.5.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-beans;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.google.inject#guice;4.1.0→javax.inject#javax.inject;1 [runtime→runtime()]
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.google.inject#guice;4.1.0→javax.inject#javax.inject;1 [runtime→compile]
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.google.inject#guice;4.1.0→aopalliance#aopalliance;1.0 [runtime→runtime()]
loadData of aopalliance#aopalliance;1.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.google.inject#guice;4.1.0→aopalliance#aopalliance;1.0 [runtime→compile]
loadData of aopalliance#aopalliance;1.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.google.inject#guice;4.1.0→com.google.guava#guava;18.0 [runtime→runtime()]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.google.inject#guice;4.1.0→com.google.guava#guava;18.0 [runtime→compile]
loadData of com.google.guava#guava;18.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.google.inject#guice;4.1.0 [runtime→compile()]
loadData of com.google.inject#guice;4.1.0 of rootConf=default
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→compile()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→compile()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.archaius#archaius-core;0.7.5 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.archaius#archaius-core;0.7.4 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.4 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-annotations;2.8.0 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-core;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-core;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-client;1.7.2→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.eureka#eureka-core;1.7.2 [compile→master()]
loadData of com.netflix.eureka#eureka-core;1.7.2 of rootConf=default
using downloadGrapes to resolve com.netflix.eureka#eureka-core;1.7.2
downloadGrapes: Checking cache for: dependency: com.netflix.eureka#eureka-core;1.7.2 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.eureka/eureka-core/ivy-1.7.2.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.eureka#eureka-core;1.7.2 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.eureka/eureka-core/ivy-1.7.2.xml
downloadGrapes: module revision found in cache: com.netflix.eureka#eureka-core;1.7.2
found com.netflix.eureka#eureka-core;1.7.2 in localm2
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.eureka#eureka-core;1.7.2 [compile→compile()]
loadData of com.netflix.eureka#eureka-core;1.7.2 of rootConf=default
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.eureka#eureka-core;1.7.2 [compile→runtime()]
loadData of com.netflix.eureka#eureka-core;1.7.2 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.eureka#eureka-core;1.7.2 [compile→compile]
loadData of com.netflix.eureka#eureka-core;1.7.2 of rootConf=default
excluding dependency: com.amazonaws#aws-java-sdk-core;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-ec2;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-autoscaling;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-sts;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-route53;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]} in runtime
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→com.netflix.eureka#eureka-client;1.7.2 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.amazonaws#aws-java-sdk-core;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-ec2;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-autoscaling;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-sts;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-route53;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→com.netflix.eureka#eureka-client;1.7.2 [runtime→runtime()]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→com.netflix.eureka#eureka-client;1.7.2 [runtime→compile]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→com.netflix.eureka#eureka-client;1.7.2 [runtime→compile()]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→com.thoughtworks.xstream#xstream;1.4.10 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.amazonaws#aws-java-sdk-core;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-ec2;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-autoscaling;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-sts;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-route53;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→com.thoughtworks.xstream#xstream;1.4.10 [runtime→runtime()]
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→com.thoughtworks.xstream#xstream;1.4.10 [runtime→compile]
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→com.thoughtworks.xstream#xstream;1.4.10 [runtime→compile()]
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→javax.ws.rs#jsr311-api;1.1.1 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.amazonaws#aws-java-sdk-core;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-ec2;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-autoscaling;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-sts;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-route53;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
loadData of javax.ws.rs#jsr311-api;1.1.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→javax.ws.rs#jsr311-api;1.1.1 [runtime→runtime()]
loadData of javax.ws.rs#jsr311-api;1.1.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→javax.ws.rs#jsr311-api;1.1.1 [runtime→compile]
loadData of javax.ws.rs#jsr311-api;1.1.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→javax.ws.rs#jsr311-api;1.1.1 [runtime→compile()]
loadData of javax.ws.rs#jsr311-api;1.1.1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→org.codehaus.woodstox#woodstox-core-asl;4.4.1 [runtime→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.amazonaws#aws-java-sdk-core;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-ec2;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-autoscaling;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-sts;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-route53;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
loadData of org.codehaus.woodstox#woodstox-core-asl;4.4.1 of rootConf=default
using downloadGrapes to resolve org.codehaus.woodstox#woodstox-core-asl;4.4.1
downloadGrapes: Checking cache for: dependency: org.codehaus.woodstox#woodstox-core-asl;4.4.1 {runtime=[compile(), runtime(), master()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.codehaus.woodstox/woodstox-core-asl/ivy-4.4.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.codehaus.woodstox#woodstox-core-asl;4.4.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.codehaus.woodstox/woodstox-core-asl/ivy-4.4.1.xml
downloadGrapes: module revision found in cache: org.codehaus.woodstox#woodstox-core-asl;4.4.1
found org.codehaus.woodstox#woodstox-core-asl;4.4.1 in localm2
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→org.codehaus.woodstox#woodstox-core-asl;4.4.1 [runtime→runtime()]
loadData of org.codehaus.woodstox#woodstox-core-asl;4.4.1 of rootConf=default
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→org.codehaus.woodstox#woodstox-core-asl;4.4.1 [runtime→compile]
loadData of org.codehaus.woodstox#woodstox-core-asl;4.4.1 of rootConf=default
== resolving dependencies org.codehaus.woodstox#woodstox-core-asl;4.4.1→javax.xml.stream#stax-api;1.0-2 [compile→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.amazonaws#aws-java-sdk-core;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-ec2;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-autoscaling;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-sts;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-route53;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
loadData of javax.xml.stream#stax-api;1.0-2 of rootConf=default
using downloadGrapes to resolve javax.xml.stream#stax-api;1.0-2
downloadGrapes: Checking cache for: dependency: javax.xml.stream#stax-api;1.0-2 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/javax.xml.stream/stax-api/ivy-1.0-2.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for javax.xml.stream#stax-api;1.0-2 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/javax.xml.stream/stax-api/ivy-1.0-2.xml
downloadGrapes: module revision found in cache: javax.xml.stream#stax-api;1.0-2
found javax.xml.stream#stax-api;1.0-2 in localm2
== resolving dependencies org.codehaus.woodstox#woodstox-core-asl;4.4.1→javax.xml.stream#stax-api;1.0-2 [compile→compile()]
loadData of javax.xml.stream#stax-api;1.0-2 of rootConf=default
== resolving dependencies org.codehaus.woodstox#woodstox-core-asl;4.4.1→javax.xml.stream#stax-api;1.0-2 [compile→runtime()]
loadData of javax.xml.stream#stax-api;1.0-2 of rootConf=default
== resolving dependencies org.codehaus.woodstox#woodstox-core-asl;4.4.1→javax.xml.stream#stax-api;1.0-2 [compile→compile]
loadData of javax.xml.stream#stax-api;1.0-2 of rootConf=default
== resolving dependencies org.codehaus.woodstox#woodstox-core-asl;4.4.1→org.codehaus.woodstox#stax2-api;3.1.4 [compile→master()]
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.amazonaws#aws-java-sdk-core;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-ec2;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-autoscaling;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-sts;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: com.amazonaws#aws-java-sdk-route53;1.11.105 {runtime=[compile(), runtime(), master()]} in runtime
excluding dependency: javax.servlet#servlet-api;2.5 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.thoughtworks.xstream#xstream;1.4.9 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.thoughtworks.xstream#xstream;1.4.10 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {runtime=[compile(), runtime(), master()]}
loadData of org.codehaus.woodstox#stax2-api;3.1.4 of rootConf=default
using downloadGrapes to resolve org.codehaus.woodstox#stax2-api;3.1.4
downloadGrapes: Checking cache for: dependency: org.codehaus.woodstox#stax2-api;3.1.4 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.codehaus.woodstox/stax2-api/ivy-3.1.4.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.codehaus.woodstox#stax2-api;3.1.4 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.codehaus.woodstox/stax2-api/ivy-3.1.4.xml
downloadGrapes: module revision found in cache: org.codehaus.woodstox#stax2-api;3.1.4
found org.codehaus.woodstox#stax2-api;3.1.4 in localm2
== resolving dependencies org.codehaus.woodstox#woodstox-core-asl;4.4.1→org.codehaus.woodstox#stax2-api;3.1.4 [compile→compile()]
loadData of org.codehaus.woodstox#stax2-api;3.1.4 of rootConf=default
== resolving dependencies org.codehaus.woodstox#woodstox-core-asl;4.4.1→org.codehaus.woodstox#stax2-api;3.1.4 [compile→runtime()]
loadData of org.codehaus.woodstox#stax2-api;3.1.4 of rootConf=default
== resolving dependencies org.codehaus.woodstox#woodstox-core-asl;4.4.1→org.codehaus.woodstox#stax2-api;3.1.4 [compile→compile]
loadData of org.codehaus.woodstox#stax2-api;3.1.4 of rootConf=default
== resolving dependencies org.codehaus.woodstox#woodstox-core-asl;4.4.1→javax.xml.stream#stax-api;1.0-2 [runtime→runtime()]
loadData of javax.xml.stream#stax-api;1.0-2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.codehaus.woodstox#woodstox-core-asl;4.4.1→javax.xml.stream#stax-api;1.0-2 [runtime→compile]
loadData of javax.xml.stream#stax-api;1.0-2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.codehaus.woodstox#woodstox-core-asl;4.4.1→org.codehaus.woodstox#stax2-api;3.1.4 [runtime→runtime()]
loadData of org.codehaus.woodstox#stax2-api;3.1.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.codehaus.woodstox#woodstox-core-asl;4.4.1→org.codehaus.woodstox#stax2-api;3.1.4 [runtime→compile]
loadData of org.codehaus.woodstox#stax2-api;3.1.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.eureka#eureka-core;1.7.2→org.codehaus.woodstox#woodstox-core-asl;4.4.1 [runtime→compile()]
loadData of org.codehaus.woodstox#woodstox-core-asl;4.4.1 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.ribbon#ribbon-eureka;2.2.5 [compile→master()]
loadData of com.netflix.ribbon#ribbon-eureka;2.2.5 of rootConf=default
using downloadGrapes to resolve com.netflix.ribbon#ribbon-eureka;2.2.5
downloadGrapes: Checking cache for: dependency: com.netflix.ribbon#ribbon-eureka;2.2.5 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.netflix.ribbon/ribbon-eureka/ivy-2.2.5.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.netflix.ribbon#ribbon-eureka;2.2.5 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.netflix.ribbon/ribbon-eureka/ivy-2.2.5.xml
downloadGrapes: module revision found in cache: com.netflix.ribbon#ribbon-eureka;2.2.5
found com.netflix.ribbon#ribbon-eureka;2.2.5 in localm2
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.ribbon#ribbon-eureka;2.2.5 [compile→compile()]
loadData of com.netflix.ribbon#ribbon-eureka;2.2.5 of rootConf=default
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.ribbon#ribbon-eureka;2.2.5 [compile→runtime()]
loadData of com.netflix.ribbon#ribbon-eureka;2.2.5 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.ribbon#ribbon-eureka;2.2.5 [compile→compile]
loadData of com.netflix.ribbon#ribbon-eureka;2.2.5 of rootConf=default
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→master()]
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.ribbon#ribbon-core;2.2.5 [runtime→compile()]
loadData of com.netflix.ribbon#ribbon-core;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→master()]
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.ribbon#ribbon-loadbalancer;2.2.5 [runtime→compile()]
loadData of com.netflix.ribbon#ribbon-loadbalancer;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.eureka#eureka-client;1.7.2 [runtime→master()]
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.eureka#eureka-client;1.7.2 [runtime→runtime()]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.eureka#eureka-client;1.7.2 [runtime→compile]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.eureka#eureka-client;1.7.2 [runtime→compile()]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→master()]
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→org.slf4j#slf4j-api;1.7.25 [runtime→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→master()]
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
excluding dependency: com.google.code.findbugs#annotations;2.0.0 {runtime=[compile(), runtime(), master()]} in runtime
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: com.netflix.eureka#eureka-client;1.4.6 {runtime=[compile(), runtime(), master()]} ⇒ dependency: com.netflix.eureka#eureka-client;1.7.2 {runtime=[compile(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.12 {runtime=[compile(), runtime(), master()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {runtime=[compile(), runtime(), master()]}
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→runtime()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.netflix.ribbon#ribbon-eureka;2.2.5→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.thoughtworks.xstream#xstream;1.4.10 [compile→master()]
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.thoughtworks.xstream#xstream;1.4.10 [compile→compile()]
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.eureka#eureka-client;1.7.2 [runtime→runtime()]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.eureka#eureka-client;1.7.2 [runtime→compile]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.eureka#eureka-core;1.7.2 [runtime→runtime()]
loadData of com.netflix.eureka#eureka-core;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.eureka#eureka-core;1.7.2 [runtime→compile]
loadData of com.netflix.eureka#eureka-core;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.ribbon#ribbon-eureka;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-eureka;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.netflix.ribbon#ribbon-eureka;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-eureka;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.thoughtworks.xstream#xstream;1.4.10 [runtime→runtime()]
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE→com.thoughtworks.xstream#xstream;1.4.10 [runtime→compile]
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-netflix-eureka-server/ivy-1.4.5.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-netflix-eureka-server/ivy-1.4.5.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE
found org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE in localm2
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-netflix-eureka-server/ivy-1.4.5.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-netflix-eureka-server/ivy-1.4.5.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE
found org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-freemarker/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-freemarker/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE
found org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.freemarker#freemarker;2.3.28 [compile→master()]
loadData of org.freemarker#freemarker;2.3.28 of rootConf=default
using downloadGrapes to resolve org.freemarker#freemarker;2.3.28
downloadGrapes: Checking cache for: dependency: org.freemarker#freemarker;2.3.28 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.freemarker/freemarker/ivy-2.3.28.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.freemarker#freemarker;2.3.28 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.freemarker/freemarker/ivy-2.3.28.xml
downloadGrapes: module revision found in cache: org.freemarker#freemarker;2.3.28
found org.freemarker#freemarker;2.3.28 in localm2
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.freemarker#freemarker;2.3.28 [compile→compile()]
loadData of org.freemarker#freemarker;2.3.28 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.springframework#spring-context-support;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-context-support;4.3.18.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework#spring-context-support;4.3.18.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework#spring-context-support;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-context-support/ivy-4.3.18.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework#spring-context-support;4.3.18.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework/spring-context-support/ivy-4.3.18.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework#spring-context-support;4.3.18.RELEASE
found org.springframework#spring-context-support;4.3.18.RELEASE in localm2
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.springframework#spring-context-support;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context-support;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
== resolving dependencies org.springframework#spring-context-support;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context-support;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context-support;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context-support;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context-support;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context-support;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.netflix.eureka#eureka-client;1.7.2 [compile→master()]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.netflix.eureka#eureka-client;1.7.2 [compile→compile()]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.sun.jersey#jersey-servlet;1.19.1 [compile→master()]
loadData of com.sun.jersey#jersey-servlet;1.19.1 of rootConf=default
using downloadGrapes to resolve com.sun.jersey#jersey-servlet;1.19.1
downloadGrapes: Checking cache for: dependency: com.sun.jersey#jersey-servlet;1.19.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.sun.jersey/jersey-servlet/ivy-1.19.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.sun.jersey#jersey-servlet;1.19.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.sun.jersey/jersey-servlet/ivy-1.19.1.xml
downloadGrapes: module revision found in cache: com.sun.jersey#jersey-servlet;1.19.1
found com.sun.jersey#jersey-servlet;1.19.1 in localm2
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.sun.jersey#jersey-servlet;1.19.1 [compile→compile()]
loadData of com.sun.jersey#jersey-servlet;1.19.1 of rootConf=default
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.sun.jersey#jersey-server;1.19.1 [compile→master()]
loadData of com.sun.jersey#jersey-server;1.19.1 of rootConf=default
using downloadGrapes to resolve com.sun.jersey#jersey-server;1.19.1
downloadGrapes: Checking cache for: dependency: com.sun.jersey#jersey-server;1.19.1 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.sun.jersey/jersey-server/ivy-1.19.1.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.sun.jersey#jersey-server;1.19.1 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.sun.jersey/jersey-server/ivy-1.19.1.xml
downloadGrapes: module revision found in cache: com.sun.jersey#jersey-server;1.19.1
found com.sun.jersey#jersey-server;1.19.1 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.sun.jersey#jersey-server;1.19.1 [compile→compile()]
loadData of com.sun.jersey#jersey-server;1.19.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.netflix.eureka#eureka-core;1.7.2 [compile→master()]
loadData of com.netflix.eureka#eureka-core;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.netflix.eureka#eureka-core;1.7.2 [compile→compile()]
loadData of com.netflix.eureka#eureka-core;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.netflix.archaius#archaius-core;0.7.4 [compile→master()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.netflix.archaius#archaius-core;0.7.4 [compile→compile()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→javax.inject#javax.inject;1 [compile→master()]
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→javax.inject#javax.inject;1 [compile→compile()]
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 [compile→master()]
loadData of com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 of rootConf=default
using downloadGrapes to resolve com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11
downloadGrapes: Checking cache for: dependency: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.dataformat/jackson-dataformat-xml/ivy-2.8.11.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.dataformat/jackson-dataformat-xml/ivy-2.8.11.xml
downloadGrapes: module revision found in cache: com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11
found com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 in localm2
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 [compile→compile()]
loadData of com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.core#jackson-core;2.8.11 [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.core#jackson-core;2.8.11 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11 [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11 of rootConf=default
using downloadGrapes to resolve com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11
downloadGrapes: Checking cache for: dependency: com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.module/jackson-module-jaxb-annotations/ivy-2.8.11.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.jackson.module/jackson-module-jaxb-annotations/ivy-2.8.11.xml
downloadGrapes: module revision found in cache: com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11
found com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11 in localm2
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11 [compile→compile()]
loadData of com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11 of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11→com.fasterxml.jackson.core#jackson-core;2.8.11 [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11→com.fasterxml.jackson.core#jackson-core;2.8.11 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→org.codehaus.woodstox#stax2-api;3.1.4 [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.codehaus.woodstox#stax2-api;3.1.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→org.codehaus.woodstox#stax2-api;3.1.4 [compile→compile()]
loadData of org.codehaus.woodstox#stax2-api;3.1.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.woodstox#woodstox-core;5.0.3 [compile→master()]
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.woodstox#woodstox-core;5.0.3 of rootConf=default
using downloadGrapes to resolve com.fasterxml.woodstox#woodstox-core;5.0.3
downloadGrapes: Checking cache for: dependency: com.fasterxml.woodstox#woodstox-core;5.0.3 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.woodstox/woodstox-core/ivy-5.0.3.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.fasterxml.woodstox#woodstox-core;5.0.3 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.fasterxml.woodstox/woodstox-core/ivy-5.0.3.xml
downloadGrapes: module revision found in cache: com.fasterxml.woodstox#woodstox-core;5.0.3
found com.fasterxml.woodstox#woodstox-core;5.0.3 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.woodstox#woodstox-core;5.0.3 [compile→compile()]
loadData of com.fasterxml.woodstox#woodstox-core;5.0.3 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.fasterxml.woodstox#woodstox-core;5.0.3→org.codehaus.woodstox#stax2-api;3.1.4 [compile→master()]
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
loadData of org.codehaus.woodstox#stax2-api;3.1.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.woodstox#woodstox-core;5.0.3→org.codehaus.woodstox#stax2-api;3.1.4 [compile→compile()]
loadData of org.codehaus.woodstox#stax2-api;3.1.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.thoughtworks.xstream#xstream;1.4.10 [compile→master()]
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.thoughtworks.xstream#xstream;1.4.10 [compile→compile()]
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.freemarker#freemarker;2.3.28 [runtime→runtime()]
loadData of org.freemarker#freemarker;2.3.28 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.freemarker#freemarker;2.3.28 [runtime→compile]
loadData of org.freemarker#freemarker;2.3.28 of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.springframework#spring-context-support;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context-support;4.3.18.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE→org.springframework#spring-context-support;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context-support;4.3.18.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: com.google.guava#guava;20.0 {optional=[compile(), master()]} ⇒ dependency: com.google.guava#guava;18.0 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: net.sf.ehcache#ehcache;2.10.4 {optional=[compile(), master()]} ⇒ dependency: net.sf.ehcache#ehcache;2.10.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.freemarker#freemarker;2.3.23 {optional=[compile(), master()]} ⇒ dependency: org.freemarker#freemarker;2.3.28 {optional=[compile(), master()]}
== resolving dependencies org.springframework#spring-context-support;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context-support;4.3.18.RELEASE→org.springframework#spring-beans;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-beans;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context-support;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context-support;4.3.18.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context-support;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework#spring-context-support;4.3.18.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.netflix.eureka#eureka-client;1.7.2 [runtime→runtime()]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.netflix.eureka#eureka-client;1.7.2 [runtime→compile]
loadData of com.netflix.eureka#eureka-client;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.sun.jersey#jersey-servlet;1.19.1 [runtime→runtime()]
loadData of com.sun.jersey#jersey-servlet;1.19.1 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.sun.jersey#jersey-servlet;1.19.1 [runtime→compile]
loadData of com.sun.jersey#jersey-servlet;1.19.1 of rootConf=default
dependency descriptor has been mediated: dependency: javax.servlet#javax.servlet-api;3.0.1 {provided=[compile(), provided(), runtime(), master()]} ⇒ dependency: javax.servlet#javax.servlet-api;3.1.0 {provided=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.sun.jersey#jersey-server;1.19.1 [runtime→runtime()]
loadData of com.sun.jersey#jersey-server;1.19.1 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.sun.jersey#jersey-server;1.19.1 [runtime→compile]
loadData of com.sun.jersey#jersey-server;1.19.1 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.8.2 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.netflix.eureka#eureka-core;1.7.2 [runtime→runtime()]
loadData of com.netflix.eureka#eureka-core;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.netflix.eureka#eureka-core;1.7.2 [runtime→compile]
loadData of com.netflix.eureka#eureka-core;1.7.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.netflix.archaius#archaius-core;0.7.4 [runtime→runtime()]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.netflix.archaius#archaius-core;0.7.4 [runtime→compile]
loadData of com.netflix.archaius#archaius-core;0.7.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→javax.inject#javax.inject;1 [runtime→runtime()]
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→javax.inject#javax.inject;1 [runtime→compile]
loadData of javax.inject#javax.inject;1 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 [runtime→runtime()]
loadData of com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 [runtime→compile]
loadData of com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11 [runtime→runtime()]
loadData of com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11 of rootConf=default
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11 [runtime→compile]
loadData of com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11 of rootConf=default
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11→com.fasterxml.jackson.core#jackson-core;2.8.11 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-core;2.8.11 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→org.codehaus.woodstox#stax2-api;3.1.4 [runtime→runtime()]
loadData of org.codehaus.woodstox#stax2-api;3.1.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→org.codehaus.woodstox#stax2-api;3.1.4 [runtime→compile]
loadData of org.codehaus.woodstox#stax2-api;3.1.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.woodstox#woodstox-core;5.0.3 [runtime→runtime()]
loadData of com.fasterxml.woodstox#woodstox-core;5.0.3 of rootConf=default
== resolving dependencies com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11→com.fasterxml.woodstox#woodstox-core;5.0.3 [runtime→compile]
loadData of com.fasterxml.woodstox#woodstox-core;5.0.3 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.11 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies com.fasterxml.woodstox#woodstox-core;5.0.3→org.codehaus.woodstox#stax2-api;3.1.4 [runtime→runtime()]
loadData of org.codehaus.woodstox#stax2-api;3.1.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.fasterxml.woodstox#woodstox-core;5.0.3→org.codehaus.woodstox#stax2-api;3.1.4 [runtime→compile]
loadData of org.codehaus.woodstox#stax2-api;3.1.4 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.thoughtworks.xstream#xstream;1.4.10 [runtime→runtime()]
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE→com.thoughtworks.xstream#xstream;1.4.10 [runtime→compile]
loadData of com.thoughtworks.xstream#xstream;1.4.10 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→com.netflix.ribbon#ribbon-eureka;2.2.5 [compile→master()]
loadData of com.netflix.ribbon#ribbon-eureka;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→com.netflix.ribbon#ribbon-eureka;2.2.5 [compile→compile()]
loadData of com.netflix.ribbon#ribbon-eureka;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→com.netflix.ribbon#ribbon-eureka;2.2.5 [runtime→runtime()]
loadData of com.netflix.ribbon#ribbon-eureka;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE→com.netflix.ribbon#ribbon-eureka;2.2.5 [runtime→compile]
loadData of com.netflix.ribbon#ribbon-eureka;2.2.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-config-server/ivy-1.4.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-config-server/ivy-1.4.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE
found org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE in jcenter
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-config-client/ivy-1.4.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-config-client/ivy-1.4.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE
found org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE in jcenter
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [compile→master()]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [compile→master()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→master()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.security#spring-security-crypto;4.2.7.RELEASE [compile→master()]
loadData of org.springframework.security#spring-security-crypto;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.security#spring-security-crypto;4.2.7.RELEASE [compile→compile()]
loadData of org.springframework.security#spring-security-crypto;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.security#spring-security-rsa;1.0.3.RELEASE [compile→master()]
loadData of org.springframework.security#spring-security-rsa;1.0.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.security#spring-security-rsa;1.0.3.RELEASE [compile→compile()]
loadData of org.springframework.security#spring-security-rsa;1.0.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r [compile→master()]
loadData of org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r of rootConf=default
using downloadGrapes to resolve org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r
downloadGrapes: Checking cache for: dependency: org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.eclipse.jgit/org.eclipse.jgit/ivy-3.6.1.201501031845-r.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.eclipse.jgit/org.eclipse.jgit/ivy-3.6.1.201501031845-r.xml
downloadGrapes: module revision found in cache: org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r
found org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r in localm2
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r [compile→compile()]
loadData of org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r of rootConf=default
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r→com.jcraft#jsch;0.1.54 [compile→master()]
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.jcraft#jsch;0.1.54 of rootConf=default
using downloadGrapes to resolve com.jcraft#jsch;0.1.54
downloadGrapes: Checking cache for: dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.jcraft/jsch/ivy-0.1.54.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.jcraft#jsch;0.1.54 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.jcraft/jsch/ivy-0.1.54.xml
downloadGrapes: module revision found in cache: com.jcraft#jsch;0.1.54
found com.jcraft#jsch;0.1.54 in localm2
== resolving dependencies org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r→com.jcraft#jsch;0.1.54 [compile→compile()]
loadData of com.jcraft#jsch;0.1.54 of rootConf=default
== resolving dependencies org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r→com.googlecode.javaewah#JavaEWAH;0.7.9 [compile→master()]
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.googlecode.javaewah#JavaEWAH;0.7.9 of rootConf=default
using downloadGrapes to resolve com.googlecode.javaewah#JavaEWAH;0.7.9
downloadGrapes: Checking cache for: dependency: com.googlecode.javaewah#JavaEWAH;0.7.9 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.googlecode.javaewah/JavaEWAH/ivy-0.7.9.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.googlecode.javaewah#JavaEWAH;0.7.9 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.googlecode.javaewah/JavaEWAH/ivy-0.7.9.xml
downloadGrapes: module revision found in cache: com.googlecode.javaewah#JavaEWAH;0.7.9
found com.googlecode.javaewah#JavaEWAH;0.7.9 in localm2
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r→com.googlecode.javaewah#JavaEWAH;0.7.9 [compile→compile()]
loadData of com.googlecode.javaewah#JavaEWAH;0.7.9 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r→org.apache.httpcomponents#httpclient;4.5.5 [compile→master()]
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r→org.apache.httpcomponents#httpclient;4.5.5 [compile→compile()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r [compile→runtime()]
loadData of org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r [compile→compile]
loadData of org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r of rootConf=default
dependency descriptor has been mediated: dependency: com.jcraft#jsch;0.1.50 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.jcraft#jsch;0.1.54 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.1.3 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r→com.jcraft#jsch;0.1.54 [runtime→runtime()]
loadData of com.jcraft#jsch;0.1.54 of rootConf=default
== resolving dependencies org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r→com.jcraft#jsch;0.1.54 [runtime→compile]
loadData of com.jcraft#jsch;0.1.54 of rootConf=default
== resolving dependencies org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r→com.googlecode.javaewah#JavaEWAH;0.7.9 [runtime→runtime()]
loadData of com.googlecode.javaewah#JavaEWAH;0.7.9 of rootConf=default
== resolving dependencies org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r→com.googlecode.javaewah#JavaEWAH;0.7.9 [runtime→compile]
loadData of com.googlecode.javaewah#JavaEWAH;0.7.9 of rootConf=default
dependency descriptor has been mediated: dependency: junit#junit;4.10 {test=[runtime(), master()]} ⇒ dependency: junit#junit;4.12 {test=[runtime(), master()]}
== resolving dependencies org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r→org.apache.httpcomponents#httpclient;4.5.5 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r→org.apache.httpcomponents#httpclient;4.5.5 [runtime→compile]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.yaml#snakeyaml;1.17 [compile→master()]
loadData of org.yaml#snakeyaml;1.17 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.yaml#snakeyaml;1.17 [compile→compile()]
loadData of org.yaml#snakeyaml;1.17 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.security#spring-security-crypto;4.2.7.RELEASE [runtime→runtime()]
loadData of org.springframework.security#spring-security-crypto;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.security#spring-security-crypto;4.2.7.RELEASE [runtime→compile]
loadData of org.springframework.security#spring-security-crypto;4.2.7.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.security#spring-security-rsa;1.0.3.RELEASE [runtime→runtime()]
loadData of org.springframework.security#spring-security-rsa;1.0.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.springframework.security#spring-security-rsa;1.0.3.RELEASE [runtime→compile]
loadData of org.springframework.security#spring-security-rsa;1.0.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r [runtime→runtime()]
loadData of org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r [runtime→compile]
loadData of org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.yaml#snakeyaml;1.17 [runtime→runtime()]
loadData of org.yaml#snakeyaml;1.17 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE→org.yaml#snakeyaml;1.17 [runtime→compile]
loadData of org.yaml#snakeyaml;1.17 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-config/ivy-1.4.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-config/ivy-1.4.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE
found org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE in jcenter
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→master()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE→org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-bus-amqp/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-bus-amqp/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE in jcenter
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-stream-rabbit/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-starter-stream-rabbit/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE in localm2
== resolving dependencies org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-stream-binder-rabbit/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-stream-binder-rabbit/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-stream-binder-rabbit-core/ivy-1.3.4.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-stream-binder-rabbit-core/ivy-1.3.4.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE
found org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-amqp/ivy-1.5.14.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.boot/spring-boot-starter-amqp/ivy-1.5.14.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE
found org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE→org.springframework.amqp#spring-rabbit;1.7.8.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework.amqp#spring-rabbit;1.7.8.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.amqp#spring-rabbit;1.7.8.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.amqp/spring-rabbit/ivy-1.7.8.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.amqp#spring-rabbit;1.7.8.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.amqp/spring-rabbit/ivy-1.7.8.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE
found org.springframework.amqp#spring-rabbit;1.7.8.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE→org.springframework.amqp#spring-rabbit;1.7.8.RELEASE [compile→compile()]
loadData of org.springframework.amqp#spring-rabbit;1.7.8.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-tx;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework#spring-tx;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-tx;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-tx;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework.amqp#spring-amqp;1.7.8.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework.amqp#spring-amqp;1.7.8.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.amqp#spring-amqp;1.7.8.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.amqp/spring-amqp/ivy-1.7.8.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.amqp#spring-amqp;1.7.8.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.amqp/spring-amqp/ivy-1.7.8.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.amqp#spring-amqp;1.7.8.RELEASE
found org.springframework.amqp#spring-amqp;1.7.8.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework.amqp#spring-amqp;1.7.8.RELEASE [compile→compile()]
loadData of org.springframework.amqp#spring-amqp;1.7.8.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
== resolving dependencies org.springframework.amqp#spring-amqp;1.7.8.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-amqp;1.7.8.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework.retry#spring-retry;1.2.2.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework.retry#spring-retry;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework.retry#spring-retry;1.2.2.RELEASE [compile→compile()]
loadData of org.springframework.retry#spring-retry;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→com.rabbitmq#http-client;1.1.1.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.rabbitmq#http-client;1.1.1.RELEASE of rootConf=default
using downloadGrapes to resolve com.rabbitmq#http-client;1.1.1.RELEASE
downloadGrapes: Checking cache for: dependency: com.rabbitmq#http-client;1.1.1.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.rabbitmq/http-client/ivy-1.1.1.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.rabbitmq#http-client;1.1.1.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.rabbitmq/http-client/ivy-1.1.1.RELEASE.xml
downloadGrapes: module revision found in cache: com.rabbitmq#http-client;1.1.1.RELEASE
found com.rabbitmq#http-client;1.1.1.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→com.rabbitmq#http-client;1.1.1.RELEASE [compile→compile()]
loadData of com.rabbitmq#http-client;1.1.1.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.rabbitmq#http-client;1.1.1.RELEASE→org.apache.httpcomponents#httpclient;4.5.5 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.rabbitmq#http-client;1.1.1.RELEASE→org.apache.httpcomponents#httpclient;4.5.5 [compile→compile()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.rabbitmq#http-client;1.1.1.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in compile
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.rabbitmq#http-client;1.1.1.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→com.rabbitmq#amqp-client;4.0.3 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.rabbitmq#amqp-client;4.0.3 of rootConf=default
using downloadGrapes to resolve com.rabbitmq#amqp-client;4.0.3
downloadGrapes: Checking cache for: dependency: com.rabbitmq#amqp-client;4.0.3 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/com.rabbitmq/amqp-client/ivy-4.0.3.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for com.rabbitmq#amqp-client;4.0.3 (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/com.rabbitmq/amqp-client/ivy-4.0.3.xml
downloadGrapes: module revision found in cache: com.rabbitmq#amqp-client;4.0.3
found com.rabbitmq#amqp-client;4.0.3 in localm2
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.21 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: io.dropwizard.metrics#metrics-core;3.1.2 {optional=[compile(), master()]} ⇒ dependency: io.dropwizard.metrics#metrics-core;3.1.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.7 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.7.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→com.rabbitmq#amqp-client;4.0.3 [compile→compile()]
loadData of com.rabbitmq#amqp-client;4.0.3 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.21 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: io.dropwizard.metrics#metrics-core;3.1.2 {optional=[compile(), master()]} ⇒ dependency: io.dropwizard.metrics#metrics-core;3.1.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.7 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.7.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
== resolving dependencies com.rabbitmq#amqp-client;4.0.3→org.slf4j#slf4j-api;1.7.25 [compile→master()]
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.21 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: io.dropwizard.metrics#metrics-core;3.1.2 {optional=[compile(), master()]} ⇒ dependency: io.dropwizard.metrics#metrics-core;3.1.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.7 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.7.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.21 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: io.dropwizard.metrics#metrics-core;3.1.2 {optional=[compile(), master()]} ⇒ dependency: io.dropwizard.metrics#metrics-core;3.1.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.7 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.7.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.21 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: io.dropwizard.metrics#metrics-core;3.1.2 {optional=[compile(), master()]} ⇒ dependency: io.dropwizard.metrics#metrics-core;3.1.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.7 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.7.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.21 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: io.dropwizard.metrics#metrics-core;3.1.2 {optional=[compile(), master()]} ⇒ dependency: io.dropwizard.metrics#metrics-core;3.1.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.7 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.7.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.rabbitmq#amqp-client;4.0.3→org.slf4j#slf4j-api;1.7.25 [compile→compile()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [compile→compile()]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE→org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.integration/spring-integration-amqp/ivy-4.3.17.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.integration/spring-integration-amqp/ivy-4.3.17.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE
found org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.6.11.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE→org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE [compile→compile()]
loadData of org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.6.11.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.6.11.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.6.11.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.6.11.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.6.11.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [compile→compile()]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE→org.springframework.amqp#spring-rabbit;1.7.8.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.6.11.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.6.11.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.6.11.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.6.11.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework.amqp#spring-rabbit;1.7.8.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE→org.springframework.amqp#spring-rabbit;1.7.8.RELEASE [compile→compile()]
loadData of org.springframework.amqp#spring-rabbit;1.7.8.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE of rootConf=default
using downloadGrapes to resolve org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE
downloadGrapes: Checking cache for: dependency: org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-stream-codec/ivy-1.3.3.RELEASE.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE (resolved by localm2): /Users/ryanjbaxter/.groovy/grapes/org.springframework.cloud/spring-cloud-stream-codec/ivy-1.3.3.RELEASE.xml
downloadGrapes: module revision found in cache: org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE
found org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE in localm2
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-logging;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-logging;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE→com.esotericsoftware#kryo-shaded;3.0.3 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-logging;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-logging;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-logging;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-logging;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.esotericsoftware#kryo-shaded;3.0.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE→com.esotericsoftware#kryo-shaded;3.0.3 [compile→compile()]
loadData of com.esotericsoftware#kryo-shaded;3.0.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [compile→master()]
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-logging;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-logging;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-logging;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-logging;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [compile→compile()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE [compile→master()]
loadData of org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE [compile→compile()]
loadData of org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE [compile→master()]
loadData of org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE [compile→compile()]
loadData of org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE [compile→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE [compile→compile]
loadData of org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-configuration-processor;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE {optional=[compile(), provided(), runtime(), master()]} ⇒ dependency: org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE {optional=[compile(), provided(), runtime(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.boot#spring-boot-starter;1.5.14.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]} ⇒ dependency: org.springframework#spring-test;4.3.18.RELEASE {test=[runtime(), master()]}
== resolving dependencies org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE→org.springframework.boot#spring-boot-starter;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE→org.springframework.amqp#spring-rabbit;1.7.8.RELEASE [runtime→runtime()]
loadData of org.springframework.amqp#spring-rabbit;1.7.8.RELEASE of rootConf=default
== resolving dependencies org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE→org.springframework.amqp#spring-rabbit;1.7.8.RELEASE [runtime→compile]
loadData of org.springframework.amqp#spring-rabbit;1.7.8.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-aop;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-aop;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-tx;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-tx;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-amqp;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-tx;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-tx;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-tx;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-tx;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework.amqp#spring-amqp;1.7.8.RELEASE [runtime→runtime()]
loadData of org.springframework.amqp#spring-amqp;1.7.8.RELEASE of rootConf=default
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework.amqp#spring-amqp;1.7.8.RELEASE [runtime→compile]
loadData of org.springframework.amqp#spring-amqp;1.7.8.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-core;4.3.15.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-core;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-oxm;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-oxm;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.1 {optional=[compile(), master()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-messaging;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-messaging;4.3.18.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework#spring-context;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework#spring-context;4.3.18.RELEASE {optional=[compile(), master()]}
== resolving dependencies org.springframework.amqp#spring-amqp;1.7.8.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-amqp;1.7.8.RELEASE→org.springframework#spring-core;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-core;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework.retry#spring-retry;1.2.2.RELEASE [runtime→runtime()]
loadData of org.springframework.retry#spring-retry;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework.retry#spring-retry;1.2.2.RELEASE [runtime→compile]
loadData of org.springframework.retry#spring-retry;1.2.2.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→com.rabbitmq#http-client;1.1.1.RELEASE [runtime→runtime()]
loadData of com.rabbitmq#http-client;1.1.1.RELEASE of rootConf=default
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→com.rabbitmq#http-client;1.1.1.RELEASE [runtime→compile]
loadData of com.rabbitmq#http-client;1.1.1.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework#spring-web;4.3.6.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
excluding dependency: org.springframework#spring-web;4.3.18.RELEASE {compile=[compile(), master()], runtime=[runtime()]} in runtime
dependency descriptor has been mediated: dependency: org.apache.httpcomponents#httpclient;4.3.6 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.apache.httpcomponents#httpclient;4.5.5 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: com.fasterxml.jackson.core#jackson-databind;2.8.4 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: com.fasterxml.jackson.core#jackson-databind;2.8.11.2 {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies com.rabbitmq#http-client;1.1.1.RELEASE→org.apache.httpcomponents#httpclient;4.5.5 [runtime→runtime()]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.rabbitmq#http-client;1.1.1.RELEASE→org.apache.httpcomponents#httpclient;4.5.5 [runtime→compile]
loadData of org.apache.httpcomponents#httpclient;4.5.5 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.rabbitmq#http-client;1.1.1.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.rabbitmq#http-client;1.1.1.RELEASE→com.fasterxml.jackson.core#jackson-databind;2.8.11.2 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-databind;2.8.11.2 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→com.rabbitmq#amqp-client;4.0.3 [runtime→runtime()]
loadData of com.rabbitmq#amqp-client;4.0.3 of rootConf=default
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→com.rabbitmq#amqp-client;4.0.3 [runtime→compile]
loadData of com.rabbitmq#amqp-client;4.0.3 of rootConf=default
dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.7.21 {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.slf4j#slf4j-api;1.7.25 {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: io.dropwizard.metrics#metrics-core;3.1.2 {optional=[compile(), master()]} ⇒ dependency: io.dropwizard.metrics#metrics-core;3.1.5 {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: ch.qos.logback#logback-classic;1.1.7 {test=[runtime(), master()]} ⇒ dependency: ch.qos.logback#logback-classic;1.1.11 {test=[runtime(), master()]}
dependency descriptor has been mediated: dependency: org.mockito#mockito-core;2.7.9 {test=[runtime(), master()]} ⇒ dependency: org.mockito#mockito-core;1.10.19 {test=[runtime(), master()]}
== resolving dependencies com.rabbitmq#amqp-client;4.0.3→org.slf4j#slf4j-api;1.7.25 [runtime→runtime()]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies com.rabbitmq#amqp-client;4.0.3→org.slf4j#slf4j-api;1.7.25 [runtime→compile]
loadData of org.slf4j#slf4j-api;1.7.25 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-messaging;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-messaging;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-context;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-context;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [runtime→runtime()]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.amqp#spring-rabbit;1.7.8.RELEASE→org.springframework#spring-web;4.3.18.RELEASE [runtime→compile]
loadData of org.springframework#spring-web;4.3.18.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE→org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE [runtime→runtime()]
loadData of org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE→org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE [runtime→compile]
loadData of org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
dependency descriptor has been mediated: dependency: org.springframework.amqp#spring-rabbit;1.6.11.RELEASE {compile=[compile(), master()], runtime=[runtime()]} ⇒ dependency: org.springframework.amqp#spring-rabbit;1.7.8.RELEASE {compile=[compile(), master()], runtime=[runtime()]}
== resolving dependencies org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [runtime→runtime()]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE→org.springframework.integration#spring-integration-core;4.3.17.RELEASE [runtime→compile]
loadData of org.springframework.integration#spring-integration-core;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE→org.springframework.amqp#spring-rabbit;1.7.8.RELEASE [runtime→runtime()]
loadData of org.springframework.amqp#spring-rabbit;1.7.8.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE→org.springframework.amqp#spring-rabbit;1.7.8.RELEASE [runtime→compile]
loadData of org.springframework.amqp#spring-rabbit;1.7.8.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE of rootConf=default
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE of rootConf=default
dependency descriptor has been mediated: dependency: org.springframework.integration#spring-integration-core;4.3.15.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.integration#spring-integration-core;4.3.17.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-starter-logging;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE {optional=[compile(), master()]}
dependency descriptor has been mediated: dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE {optional=[compile(), master()]} ⇒ dependency: org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE {optional=[compile(), master()]}
== resolving dependencies org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE→com.esotericsoftware#kryo-shaded;3.0.3 [runtime→runtime()]
loadData of com.esotericsoftware#kryo-shaded;3.0.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE→com.esotericsoftware#kryo-shaded;3.0.3 [runtime→compile]
loadData of com.esotericsoftware#kryo-shaded;3.0.3 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→runtime()]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE→com.fasterxml.jackson.core#jackson-annotations;2.8.0 [runtime→compile]
loadData of com.fasterxml.jackson.core#jackson-annotations;2.8.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE [runtime→runtime()]
loadData of org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE [runtime→compile]
loadData of org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE [runtime→runtime()]
loadData of org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE→org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE [runtime→compile]
loadData of org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE [compile→master()]
loadData of org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE [compile→compile()]
loadData of org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE [runtime→runtime()]
loadData of org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE→org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE [runtime→compile]
loadData of org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE of rootConf=default
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [default→default]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [default→runtime]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [default→compile]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working20→org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE [default→master]
loadData of org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working20→org.codehaus.groovy#groovy-xml;2.5.0 [default→default]
loadData of org.codehaus.groovy#groovy-xml;2.5.0 of rootConf=default
using downloadGrapes to resolve org.codehaus.groovy#groovy-xml;2.5.0
downloadGrapes: Checking cache for: dependency: org.codehaus.groovy#groovy-xml;2.5.0 {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.codehaus.groovy/groovy-xml/ivy-2.5.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.codehaus.groovy#groovy-xml;2.5.0 (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.codehaus.groovy/groovy-xml/ivy-2.5.0.xml
downloadGrapes: module revision found in cache: org.codehaus.groovy#groovy-xml;2.5.0
found org.codehaus.groovy#groovy-xml;2.5.0 in jcenter
== resolving dependencies caller#all-caller;working20→org.codehaus.groovy#groovy-xml;2.5.0 [default→runtime]
loadData of org.codehaus.groovy#groovy-xml;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working20→org.codehaus.groovy#groovy-xml;2.5.0 [default→compile]
loadData of org.codehaus.groovy#groovy-xml;2.5.0 of rootConf=default
== resolving dependencies org.codehaus.groovy#groovy-xml;2.5.0→org.codehaus.groovy#groovy;2.5.0 [compile→master()]
loadData of org.codehaus.groovy#groovy;2.5.0 of rootConf=default
using downloadGrapes to resolve org.codehaus.groovy#groovy;2.5.0
downloadGrapes: Checking cache for: dependency: org.codehaus.groovy#groovy;2.5.0 {compile=[compile(), master()], runtime=[runtime()]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.codehaus.groovy/groovy/ivy-2.5.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.codehaus.groovy#groovy;2.5.0 (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.codehaus.groovy/groovy/ivy-2.5.0.xml
downloadGrapes: module revision found in cache: org.codehaus.groovy#groovy;2.5.0
found org.codehaus.groovy#groovy;2.5.0 in jcenter
== resolving dependencies org.codehaus.groovy#groovy-xml;2.5.0→org.codehaus.groovy#groovy;2.5.0 [compile→compile()]
loadData of org.codehaus.groovy#groovy;2.5.0 of rootConf=default
== resolving dependencies org.codehaus.groovy#groovy-xml;2.5.0→org.codehaus.groovy#groovy;2.5.0 [compile→runtime()]
loadData of org.codehaus.groovy#groovy;2.5.0 of rootConf=default
== resolving dependencies org.codehaus.groovy#groovy-xml;2.5.0→org.codehaus.groovy#groovy;2.5.0 [compile→compile]
loadData of org.codehaus.groovy#groovy;2.5.0 of rootConf=default
== resolving dependencies org.codehaus.groovy#groovy-xml;2.5.0→org.codehaus.groovy#groovy;2.5.0 [runtime→runtime()]
loadData of org.codehaus.groovy#groovy;2.5.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.codehaus.groovy#groovy-xml;2.5.0→org.codehaus.groovy#groovy;2.5.0 [runtime→compile]
loadData of org.codehaus.groovy#groovy;2.5.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working20→org.codehaus.groovy#groovy-xml;2.5.0 [default→master]
loadData of org.codehaus.groovy#groovy-xml;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working20→org.codehaus.groovy#groovy-xml;2.5.0 [default→master()]
loadData of org.codehaus.groovy#groovy-xml;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working20→org.codehaus.groovy#groovy-xml;2.5.0 [default→runtime()]
loadData of org.codehaus.groovy#groovy-xml;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working20→org.codehaus.groovy#groovy-xml;2.5.0 [default→compile]
loadData of org.codehaus.groovy#groovy-xml;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working20→org.codehaus.groovy#groovy-xml;2.5.0 [default→compile()]
loadData of org.codehaus.groovy#groovy-xml;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working20→org.codehaus.groovy#groovy-nio;2.5.0 [default→default]
loadData of org.codehaus.groovy#groovy-nio;2.5.0 of rootConf=default
using downloadGrapes to resolve org.codehaus.groovy#groovy-nio;2.5.0
downloadGrapes: Checking cache for: dependency: org.codehaus.groovy#groovy-nio;2.5.0 {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.codehaus.groovy/groovy-nio/ivy-2.5.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.codehaus.groovy#groovy-nio;2.5.0 (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.codehaus.groovy/groovy-nio/ivy-2.5.0.xml
downloadGrapes: module revision found in cache: org.codehaus.groovy#groovy-nio;2.5.0
found org.codehaus.groovy#groovy-nio;2.5.0 in jcenter
== resolving dependencies caller#all-caller;working20→org.codehaus.groovy#groovy-nio;2.5.0 [default→runtime]
loadData of org.codehaus.groovy#groovy-nio;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working20→org.codehaus.groovy#groovy-nio;2.5.0 [default→compile]
loadData of org.codehaus.groovy#groovy-nio;2.5.0 of rootConf=default
== resolving dependencies org.codehaus.groovy#groovy-nio;2.5.0→org.codehaus.groovy#groovy;2.5.0 [compile→master()]
loadData of org.codehaus.groovy#groovy;2.5.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.codehaus.groovy#groovy-nio;2.5.0→org.codehaus.groovy#groovy;2.5.0 [compile→compile()]
loadData of org.codehaus.groovy#groovy;2.5.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.codehaus.groovy#groovy-nio;2.5.0→org.codehaus.groovy#groovy;2.5.0 [runtime→runtime()]
loadData of org.codehaus.groovy#groovy;2.5.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.codehaus.groovy#groovy-nio;2.5.0→org.codehaus.groovy#groovy;2.5.0 [runtime→compile]
loadData of org.codehaus.groovy#groovy;2.5.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working20→org.codehaus.groovy#groovy-nio;2.5.0 [default→master]
loadData of org.codehaus.groovy#groovy-nio;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working20→org.codehaus.groovy#groovy-nio;2.5.0 [default→master()]
loadData of org.codehaus.groovy#groovy-nio;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working20→org.codehaus.groovy#groovy-nio;2.5.0 [default→runtime()]
loadData of org.codehaus.groovy#groovy-nio;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working20→org.codehaus.groovy#groovy-nio;2.5.0 [default→compile]
loadData of org.codehaus.groovy#groovy-nio;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working20→org.codehaus.groovy#groovy-nio;2.5.0 [default→compile()]
loadData of org.codehaus.groovy#groovy-nio;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working20→org.codehaus.groovy#groovy-json;2.5.0 [default→default]
loadData of org.codehaus.groovy#groovy-json;2.5.0 of rootConf=default
using downloadGrapes to resolve org.codehaus.groovy#groovy-json;2.5.0
downloadGrapes: Checking cache for: dependency: org.codehaus.groovy#groovy-json;2.5.0 {default=[default]}
No entry is found in the ModuleDescriptorCache : /Users/ryanjbaxter/.groovy/grapes/org.codehaus.groovy/groovy-json/ivy-2.5.0.xml
post 1.3 ivy file: using exact as default matcher
ModuleDescriptorCache is full, remove one entry
found ivy file in cache for org.codehaus.groovy#groovy-json;2.5.0 (resolved by jcenter): /Users/ryanjbaxter/.groovy/grapes/org.codehaus.groovy/groovy-json/ivy-2.5.0.xml
downloadGrapes: module revision found in cache: org.codehaus.groovy#groovy-json;2.5.0
found org.codehaus.groovy#groovy-json;2.5.0 in jcenter
== resolving dependencies caller#all-caller;working20→org.codehaus.groovy#groovy-json;2.5.0 [default→runtime]
loadData of org.codehaus.groovy#groovy-json;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working20→org.codehaus.groovy#groovy-json;2.5.0 [default→compile]
loadData of org.codehaus.groovy#groovy-json;2.5.0 of rootConf=default
== resolving dependencies org.codehaus.groovy#groovy-json;2.5.0→org.codehaus.groovy#groovy;2.5.0 [compile→master()]
loadData of org.codehaus.groovy#groovy;2.5.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.codehaus.groovy#groovy-json;2.5.0→org.codehaus.groovy#groovy;2.5.0 [compile→compile()]
loadData of org.codehaus.groovy#groovy;2.5.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.codehaus.groovy#groovy-json;2.5.0→org.codehaus.groovy#groovy;2.5.0 [runtime→runtime()]
loadData of org.codehaus.groovy#groovy;2.5.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies org.codehaus.groovy#groovy-json;2.5.0→org.codehaus.groovy#groovy;2.5.0 [runtime→compile]
loadData of org.codehaus.groovy#groovy;2.5.0 of rootConf=default
default is loaded and no conf to load. Skip loading
== resolving dependencies caller#all-caller;working20→org.codehaus.groovy#groovy-json;2.5.0 [default→master]
loadData of org.codehaus.groovy#groovy-json;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working20→org.codehaus.groovy#groovy-json;2.5.0 [default→master()]
loadData of org.codehaus.groovy#groovy-json;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working20→org.codehaus.groovy#groovy-json;2.5.0 [default→runtime()]
loadData of org.codehaus.groovy#groovy-json;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working20→org.codehaus.groovy#groovy-json;2.5.0 [default→compile]
loadData of org.codehaus.groovy#groovy-json;2.5.0 of rootConf=default
== resolving dependencies caller#all-caller;working20→org.codehaus.groovy#groovy-json;2.5.0 [default→compile(*)]
loadData of org.codehaus.groovy#groovy-json;2.5.0 of rootConf=default
Nbr of module to sort : 251
Sort dependencies of : org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE / Number of dependencies = 5
Sort dependencies of : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE / Number of dependencies = 11
Sort dependencies of : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE / Number of dependencies = 10
Sort dependencies of : org.springframework.boot#spring-boot;1.5.14.RELEASE / Number of dependencies = 69
Sort dependencies of : org.springframework#spring-core;4.3.18.RELEASE / Number of dependencies = 5
Sort dependencies of : commons-codec#commons-codec;1.10 / Number of dependencies = 1
Non matching revision detected when sorting. commons-codec#commons-codec depends on junit#junit;4.11, doesn’t match junit#junit;4.12
Sort done for : commons-codec#commons-codec;1.10
Sort dependencies of : commons-logging#commons-logging;1.2 / Number of dependencies = 5
Non matching revision detected when sorting. commons-logging#commons-logging depends on junit#junit;3.8.1, doesn’t match junit#junit;4.12
Sort done for : commons-logging#commons-logging;1.2
Non matching revision detected when sorting. org.springframework#spring-core depends on org.aspectj#aspectjweaver;1.8.9, doesn’t match org.aspectj#aspectjweaver;1.8.13
Sort done for : org.springframework#spring-core;4.3.18.RELEASE
Sort dependencies of : org.springframework#spring-context;4.3.18.RELEASE / Number of dependencies = 17
Sort dependencies of : javax.inject#javax.inject;1 / Number of dependencies = 0
Sort done for : javax.inject#javax.inject;1
Non matching revision detected when sorting. org.springframework#spring-context depends on javax.validation#validation-api;1.0.0.GA, doesn’t match javax.validation#validation-api;1.1.0.Final
Sort dependencies of : joda-time#joda-time;2.9.9 / Number of dependencies = 2
Non matching revision detected when sorting. joda-time#joda-time depends on junit#junit;3.8.2, doesn’t match junit#junit;4.12
Sort done for : joda-time#joda-time;2.9.9
Non matching revision detected when sorting. org.springframework#spring-context depends on org.aspectj#aspectjweaver;1.8.9, doesn’t match org.aspectj#aspectjweaver;1.8.13
Non matching revision detected when sorting. org.springframework#spring-context depends on org.hibernate#hibernate-validator;4.3.2.Final, doesn’t match org.hibernate#hibernate-validator;5.3.6.Final
Sort dependencies of : org.springframework#spring-aop;4.3.18.RELEASE / Number of dependencies = 6
Non matching revision detected when sorting. org.springframework#spring-aop depends on org.aspectj#aspectjweaver;1.8.9, doesn’t match org.aspectj#aspectjweaver;1.8.13
Sort dependencies of : org.springframework#spring-beans;4.3.18.RELEASE / Number of dependencies = 5
Module descriptor is processed : javax.inject#javax.inject;1
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Sort dependencies of : org.yaml#snakeyaml;1.17 / Number of dependencies = 4
Sort dependencies of : junit#junit;4.12 / Number of dependencies = 1
Sort dependencies of : org.hamcrest#hamcrest-core;1.3 / Number of dependencies = 0
Sort done for : org.hamcrest#hamcrest-core;1.3
Sort done for : junit#junit;4.12
Non matching revision detected when sorting. org.yaml#snakeyaml depends on joda-time#joda-time;1.6, doesn’t match joda-time#joda-time;2.9.9
Non matching revision detected when sorting. org.yaml#snakeyaml depends on joda-time#joda-time;1.6, doesn’t match joda-time#joda-time;2.7
Sort done for : org.yaml#snakeyaml;1.17
Sort done for : org.springframework#spring-beans;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Sort done for : org.springframework#spring-aop;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-beans;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Sort dependencies of : org.springframework#spring-expression;4.3.18.RELEASE / Number of dependencies = 1
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Sort done for : org.springframework#spring-expression;4.3.18.RELEASE
Sort done for : org.springframework#spring-context;4.3.18.RELEASE
Sort dependencies of : ch.qos.logback#logback-classic;1.1.11 / Number of dependencies = 25
Sort dependencies of : ch.qos.logback#logback-core;1.1.11 / Number of dependencies = 9
Sort dependencies of : org.mockito#mockito-core;1.10.19 / Number of dependencies = 2
Non matching revision detected when sorting. org.mockito#mockito-core depends on org.hamcrest#hamcrest-core;1.1, doesn’t match org.hamcrest#hamcrest-core;1.3
Sort dependencies of : org.objenesis#objenesis;2.1 / Number of dependencies = 1
Non matching revision detected when sorting. org.objenesis#objenesis depends on junit#junit;4.11, doesn’t match junit#junit;4.12
Sort done for : org.objenesis#objenesis;2.1
Sort done for : org.mockito#mockito-core;1.10.19
Non matching revision detected when sorting. ch.qos.logback#logback-core depends on joda-time#joda-time;2.9.2, doesn’t match joda-time#joda-time;2.9.9
Non matching revision detected when sorting. ch.qos.logback#logback-core depends on joda-time#joda-time;2.9.2, doesn’t match joda-time#joda-time;2.7
Non matching revision detected when sorting. ch.qos.logback#logback-core depends on junit#junit;4.10, doesn’t match junit#junit;4.12
Non matching revision detected when sorting. ch.qos.logback#logback-core depends on org.assertj#assertj-core;1.7.1, doesn’t match org.assertj#assertj-core;2.6.0
Sort done for : ch.qos.logback#logback-core;1.1.11
Non matching revision detected when sorting. ch.qos.logback#logback-classic depends on org.slf4j#slf4j-api;1.7.22, doesn’t match org.slf4j#slf4j-api;1.7.25
Non matching revision detected when sorting. ch.qos.logback#logback-classic depends on org.slf4j#slf4j-api;1.7.22, doesn’t match org.slf4j#slf4j-api;1.7.25
Non matching revision detected when sorting. ch.qos.logback#logback-classic depends on org.slf4j#log4j-over-slf4j;1.7.22, doesn’t match org.slf4j#log4j-over-slf4j;1.7.25
Non matching revision detected when sorting. ch.qos.logback#logback-classic depends on org.slf4j#jul-to-slf4j;1.7.22, doesn’t match org.slf4j#jul-to-slf4j;1.7.25
Module descriptor is processed : ch.qos.logback#logback-core;1.1.11
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Non matching revision detected when sorting. ch.qos.logback#logback-classic depends on junit#junit;4.10, doesn’t match junit#junit;4.12
Non matching revision detected when sorting. ch.qos.logback#logback-classic depends on org.assertj#assertj-core;1.7.1, doesn’t match org.assertj#assertj-core;2.6.0
Sort done for : ch.qos.logback#logback-classic;1.1.11
Sort dependencies of : com.fasterxml.jackson.core#jackson-databind;2.8.11.2 / Number of dependencies = 7
Sort dependencies of : com.fasterxml.jackson.core#jackson-annotations;2.8.0 / Number of dependencies = 1
Module descriptor is processed : junit#junit;4.12
Sort done for : com.fasterxml.jackson.core#jackson-annotations;2.8.0
Non matching revision detected when sorting. com.fasterxml.jackson.core#jackson-databind depends on com.fasterxml.jackson.core#jackson-core;2.8.10, doesn’t match com.fasterxml.jackson.core#jackson-core;2.8.11
Module descriptor is processed : junit#junit;4.12
Sort done for : com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Sort dependencies of : com.google.code.gson#gson;2.8.5 / Number of dependencies = 1
Module descriptor is processed : junit#junit;4.12
Sort done for : com.google.code.gson#gson;2.8.5
Module descriptor is processed : junit#junit;4.12
Sort dependencies of : org.apache.httpcomponents#httpclient;4.5.5 / Number of dependencies = 5
Sort dependencies of : org.apache.httpcomponents#httpcore;4.4.9 / Number of dependencies = 4
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : commons-logging#commons-logging;1.2
Non matching revision detected when sorting. org.apache.httpcomponents#httpcore depends on org.apache.commons#commons-lang3;3.4, doesn’t match org.apache.commons#commons-lang3;3.5
Sort done for : org.apache.httpcomponents#httpcore;4.4.9
Module descriptor is processed : commons-logging#commons-logging;1.2
Module descriptor is processed : commons-codec#commons-codec;1.10
Non matching revision detected when sorting. org.apache.httpcomponents#httpclient depends on junit#junit;4.11, doesn’t match junit#junit;4.12
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Sort done for : org.apache.httpcomponents#httpclient;4.5.5
Sort dependencies of : org.apache.tomcat.embed#tomcat-embed-core;8.5.31 / Number of dependencies = 1
Sort dependencies of : org.apache.tomcat#tomcat-annotations-api;8.5.31 / Number of dependencies = 0
Sort done for : org.apache.tomcat#tomcat-annotations-api;8.5.31
Sort done for : org.apache.tomcat.embed#tomcat-embed-core;8.5.31
Sort dependencies of : org.assertj#assertj-core;2.6.0 / Number of dependencies = 4
Module descriptor is processed : junit#junit;4.12
Non matching revision detected when sorting. org.assertj#assertj-core depends on org.mockito#mockito-core;2.2.9, doesn’t match org.mockito#mockito-core;1.10.19
Sort done for : org.assertj#assertj-core;2.6.0
Non matching revision detected when sorting. org.springframework.boot#spring-boot depends on org.codehaus.groovy#groovy;2.4.15, doesn’t match org.codehaus.groovy#groovy;2.5.0
Sort dependencies of : org.codehaus.groovy#groovy;2.4.15 / Number of dependencies = 5
Sort dependencies of : com.thoughtworks.xstream#xstream;1.4.10 / Number of dependencies = 21
Non matching revision detected when sorting. com.thoughtworks.xstream#xstream depends on joda-time#joda-time;1.6, doesn’t match joda-time#joda-time;2.9.9
Non matching revision detected when sorting. com.thoughtworks.xstream#xstream depends on joda-time#joda-time;1.6, doesn’t match joda-time#joda-time;2.7
Sort dependencies of : stax#stax-api;1.0.1 / Number of dependencies = 0
Sort done for : stax#stax-api;1.0.1
Sort dependencies of : xmlpull#xmlpull;1.1.3.1 / Number of dependencies = 0
Sort done for : xmlpull#xmlpull;1.1.3.1
Sort dependencies of : xpp3#xpp3_min;1.1.4c / Number of dependencies = 0
Sort done for : xpp3#xpp3_min;1.1.4c
Non matching revision detected when sorting. com.thoughtworks.xstream#xstream depends on org.codehaus.jettison#jettison;1.2, doesn’t match org.codehaus.jettison#jettison;1.3.7
Non matching revision detected when sorting. com.thoughtworks.xstream#xstream depends on junit#junit;3.8.1, doesn’t match junit#junit;4.12
Non matching revision detected when sorting. com.thoughtworks.xstream#xstream depends on commons-lang#commons-lang;2.4, doesn’t match commons-lang#commons-lang;2.6
Sort done for : com.thoughtworks.xstream#xstream;1.4.10
Sort done for : org.codehaus.groovy#groovy;2.4.15
Non matching revision detected when sorting. org.springframework.boot#spring-boot depends on org.codehaus.groovy#groovy-xml;2.4.15, doesn’t match org.codehaus.groovy#groovy-xml;2.5.0
Sort dependencies of : org.hamcrest#hamcrest-library;1.3 / Number of dependencies = 1
Module descriptor is processed : org.hamcrest#hamcrest-core;1.3
Sort done for : org.hamcrest#hamcrest-library;1.3
Sort dependencies of : org.hibernate#hibernate-validator;5.3.6.Final / Number of dependencies = 16
Sort dependencies of : javax.validation#validation-api;1.1.0.Final / Number of dependencies = 1
Sort done for : javax.validation#validation-api;1.1.0.Final
Non matching revision detected when sorting. org.hibernate#hibernate-validator depends on org.jboss.logging#jboss-logging;3.3.0.Final, doesn’t match org.jboss.logging#jboss-logging;3.3.2.Final
Non matching revision detected when sorting. org.hibernate#hibernate-validator depends on com.fasterxml#classmate;1.3.1, doesn’t match com.fasterxml#classmate;1.3.4
Non matching revision detected when sorting. org.hibernate#hibernate-validator depends on joda-time#joda-time;2.9.5, doesn’t match joda-time#joda-time;2.9.9
Non matching revision detected when sorting. org.hibernate#hibernate-validator depends on joda-time#joda-time;2.9.5, doesn’t match joda-time#joda-time;2.7
Sort done for : org.hibernate#hibernate-validator;5.3.6.Final
Sort dependencies of : org.slf4j#jul-to-slf4j;1.7.25 / Number of dependencies = 3
Sort dependencies of : org.slf4j#slf4j-api;1.7.25 / Number of dependencies = 1
Module descriptor is processed : junit#junit;4.12
Sort done for : org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : junit#junit;4.12
Sort done for : org.slf4j#jul-to-slf4j;1.7.25
Module descriptor is processed : org.slf4j#slf4j-api;1.7.25
Sort dependencies of : org.springframework#spring-test;4.3.18.RELEASE / Number of dependencies = 30
Non matching revision detected when sorting. org.springframework#spring-test depends on com.jayway.jsonpath#json-path;2.3.0, doesn’t match com.jayway.jsonpath#json-path;2.2.0
Module descriptor is processed : javax.inject#javax.inject;1
Module descriptor is processed : junit#junit;4.12
Non matching revision detected when sorting. org.springframework#spring-test depends on org.aspectj#aspectjweaver;1.8.9, doesn’t match org.aspectj#aspectjweaver;1.8.13
Module descriptor is processed : org.hamcrest#hamcrest-core;1.3
Sort dependencies of : org.skyscreamer#jsonassert;1.4.0 / Number of dependencies = 2
Sort dependencies of : com.vaadin.external.google#android-json;0.0.20131108.vaadin1 / Number of dependencies = 0
Sort done for : com.vaadin.external.google#android-json;0.0.20131108.vaadin1
Non matching revision detected when sorting. org.skyscreamer#jsonassert depends on junit#junit;4.10, doesn’t match junit#junit;4.12
Sort done for : org.skyscreamer#jsonassert;1.4.0
Module descriptor is processed : org.springframework#spring-aop;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-beans;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Sort dependencies of : org.springframework#spring-tx;4.3.18.RELEASE / Number of dependencies = 8
Module descriptor is processed : org.springframework#spring-aop;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-beans;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Sort done for : org.springframework#spring-tx;4.3.18.RELEASE
Sort dependencies of : org.springframework#spring-web;4.3.18.RELEASE / Number of dependencies = 29
Non matching revision detected when sorting. org.springframework#spring-web depends on com.fasterxml.jackson.core#jackson-databind;2.8.11.1, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Sort dependencies of : com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11 / Number of dependencies = 8
Sort dependencies of : com.fasterxml.jackson.core#jackson-core;2.8.11 / Number of dependencies = 1
Module descriptor is processed : junit#junit;4.12
Sort done for : com.fasterxml.jackson.core#jackson-core;2.8.11
Module descriptor is processed : com.fasterxml.jackson.core#jackson-annotations;2.8.0
Non matching revision detected when sorting. com.fasterxml.jackson.dataformat#jackson-dataformat-xml depends on com.fasterxml.jackson.core#jackson-databind;2.8.11, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Sort dependencies of : com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11 / Number of dependencies = 6
Module descriptor is processed : com.fasterxml.jackson.core#jackson-core;2.8.11
Module descriptor is processed : com.fasterxml.jackson.core#jackson-annotations;2.8.0
Non matching revision detected when sorting. com.fasterxml.jackson.module#jackson-module-jaxb-annotations depends on com.fasterxml.jackson.core#jackson-databind;2.8.11, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : junit#junit;4.12
Sort dependencies of : javax.ws.rs#jsr311-api;1.1.1 / Number of dependencies = 1
Non matching revision detected when sorting. javax.ws.rs#jsr311-api depends on junit#junit;3.8.1, doesn’t match junit#junit;4.12
Sort done for : javax.ws.rs#jsr311-api;1.1.1
Sort done for : com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11
Sort dependencies of : javax.xml.stream#stax-api;1.0-2 / Number of dependencies = 0
Sort done for : javax.xml.stream#stax-api;1.0-2
Sort dependencies of : org.codehaus.woodstox#stax2-api;3.1.4 / Number of dependencies = 1
Module descriptor is processed : javax.xml.stream#stax-api;1.0-2
Sort done for : org.codehaus.woodstox#stax2-api;3.1.4
Sort dependencies of : com.fasterxml.woodstox#woodstox-core;5.0.3 / Number of dependencies = 7
Module descriptor is processed : javax.xml.stream#stax-api;1.0-2
Module descriptor is processed : org.codehaus.woodstox#stax2-api;3.1.4
Non matching revision detected when sorting. com.fasterxml.woodstox#woodstox-core depends on junit#junit;4.11, doesn’t match junit#junit;4.12
Sort done for : com.fasterxml.woodstox#woodstox-core;5.0.3
Module descriptor is processed : junit#junit;4.12
Sort done for : com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11
Non matching revision detected when sorting. org.springframework#spring-web depends on com.google.code.gson#gson;2.8.2, doesn’t match com.google.code.gson#gson;2.8.5
Non matching revision detected when sorting. org.springframework#spring-web depends on com.google.code.gson#gson;2.8.2, doesn’t match com.google.code.gson#gson;2.3.1
Sort dependencies of : com.google.protobuf#protobuf-java;2.6.1 / Number of dependencies = 3
Non matching revision detected when sorting. com.google.protobuf#protobuf-java depends on junit#junit;4.4, doesn’t match junit#junit;4.12
Sort done for : com.google.protobuf#protobuf-java;2.6.1
Non matching revision detected when sorting. org.springframework#spring-web depends on javax.validation#validation-api;1.0.0.GA, doesn’t match javax.validation#validation-api;1.1.0.Final
Module descriptor is processed : org.apache.httpcomponents#httpclient;4.5.5
Module descriptor is processed : org.springframework#spring-aop;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-beans;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Sort done for : org.springframework#spring-web;4.3.18.RELEASE
Sort dependencies of : org.springframework#spring-webmvc;4.3.18.RELEASE / Number of dependencies = 31
Non matching revision detected when sorting. org.springframework#spring-webmvc depends on com.fasterxml.jackson.core#jackson-databind;2.8.11.1, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11
Non matching revision detected when sorting. org.springframework#spring-webmvc depends on org.freemarker#freemarker;2.3.23, doesn’t match org.freemarker#freemarker;2.3.28
Module descriptor is processed : org.springframework#spring-aop;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-beans;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Sort dependencies of : org.springframework#spring-context-support;4.3.18.RELEASE / Number of dependencies = 16
Non matching revision detected when sorting. org.springframework#spring-context-support depends on com.google.guava#guava;20.0, doesn’t match com.google.guava#guava;18.0
Non matching revision detected when sorting. org.springframework#spring-context-support depends on org.freemarker#freemarker;2.3.23, doesn’t match org.freemarker#freemarker;2.3.28
Module descriptor is processed : org.springframework#spring-beans;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-tx;4.3.18.RELEASE
Sort done for : org.springframework#spring-context-support;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-expression;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-web;4.3.18.RELEASE
Sort done for : org.springframework#spring-webmvc;4.3.18.RELEASE
Sort done for : org.springframework#spring-test;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-web;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-webmvc;4.3.18.RELEASE
Module descriptor is processed : org.yaml#snakeyaml;1.17
Sort dependencies of : org.slf4j#jcl-over-slf4j;1.7.25 / Number of dependencies = 3
Module descriptor is processed : org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : junit#junit;4.12
Sort done for : org.slf4j#jcl-over-slf4j;1.7.25
Module descriptor is processed : org.springframework#spring-context-support;4.3.18.RELEASE
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot;1.5.14.RELEASE
Sort dependencies of : org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE / Number of dependencies = 129
Module descriptor is processed : org.springframework.boot#spring-boot;1.5.14.RELEASE
Module descriptor is processed : com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11
Module descriptor is processed : com.google.code.gson#gson;2.8.5
Module descriptor is processed : org.apache.tomcat.embed#tomcat-embed-core;8.5.31
Sort dependencies of : org.apache.tomcat.embed#tomcat-embed-el;8.5.31 / Number of dependencies = 0
Sort done for : org.apache.tomcat.embed#tomcat-embed-el;8.5.31
Sort dependencies of : org.freemarker#freemarker;2.3.28 / Number of dependencies = 0
Sort done for : org.freemarker#freemarker;2.3.28
Module descriptor is processed : org.hibernate#hibernate-validator;5.3.6.Final
Sort dependencies of : org.springframework.integration#spring-integration-core;4.3.17.RELEASE / Number of dependencies = 11
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-aop;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Sort dependencies of : org.springframework#spring-messaging;4.3.18.RELEASE / Number of dependencies = 10
Non matching revision detected when sorting. org.springframework#spring-messaging depends on com.fasterxml.jackson.core#jackson-databind;2.8.11.1, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : org.springframework#spring-beans;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Sort done for : org.springframework#spring-messaging;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-tx;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.integration#spring-integration-core depends on org.springframework.retry#spring-retry;1.1.3.RELEASE, doesn’t match org.springframework.retry#spring-retry;1.2.2.RELEASE
Non matching revision detected when sorting. org.springframework.integration#spring-integration-core depends on com.fasterxml.jackson.core#jackson-databind;2.8.10, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Sort dependencies of : com.jayway.jsonpath#json-path;2.2.0 / Number of dependencies = 6
Sort dependencies of : net.minidev#json-smart;2.2.1 / Number of dependencies = 2
Module descriptor is processed : junit#junit;4.12
Sort dependencies of : net.minidev#accessors-smart;1.1 / Number of dependencies = 2
Non matching revision detected when sorting. net.minidev#accessors-smart depends on junit#junit;3.8.2, doesn’t match junit#junit;4.12
Sort dependencies of : org.ow2.asm#asm;5.0.3 / Number of dependencies = 0
Sort done for : org.ow2.asm#asm;5.0.3
Sort done for : net.minidev#accessors-smart;1.1
Sort done for : net.minidev#json-smart;2.2.1
Non matching revision detected when sorting. com.jayway.jsonpath#json-path depends on com.google.code.gson#gson;2.3.1, doesn’t match com.google.code.gson#gson;2.8.5
Sort dependencies of : com.google.code.gson#gson;2.3.1 / Number of dependencies = 1
Non matching revision detected when sorting. com.google.code.gson#gson depends on junit#junit;3.8.2, doesn’t match junit#junit;4.12
Sort done for : com.google.code.gson#gson;2.3.1
Non matching revision detected when sorting. com.jayway.jsonpath#json-path depends on com.fasterxml.jackson.core#jackson-databind;2.6.3, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Non matching revision detected when sorting. com.jayway.jsonpath#json-path depends on org.slf4j#slf4j-api;1.7.16, doesn’t match org.slf4j#slf4j-api;1.7.25
Sort done for : com.jayway.jsonpath#json-path;2.2.0
Sort dependencies of : com.esotericsoftware#kryo-shaded;3.0.3 / Number of dependencies = 6
Sort dependencies of : com.esotericsoftware#minlog;1.3.0 / Number of dependencies = 1
Non matching revision detected when sorting. com.esotericsoftware#minlog depends on junit#junit;4.11, doesn’t match junit#junit;4.12
Sort done for : com.esotericsoftware#minlog;1.3.0
Module descriptor is processed : org.objenesis#objenesis;2.1
Non matching revision detected when sorting. com.esotericsoftware#kryo-shaded depends on junit#junit;4.8.2, doesn’t match junit#junit;4.12
Module descriptor is processed : com.esotericsoftware#minlog;1.3.0
Module descriptor is processed : org.objenesis#objenesis;2.1
Non matching revision detected when sorting. com.esotericsoftware#kryo-shaded depends on junit#junit;4.8.2, doesn’t match junit#junit;4.12
Sort done for : com.esotericsoftware#kryo-shaded;3.0.3
Sort done for : org.springframework.integration#spring-integration-core;4.3.17.RELEASE
Sort dependencies of : org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE / Number of dependencies = 1
Module descriptor is processed : org.springframework.integration#spring-integration-core;4.3.17.RELEASE
Sort done for : org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE
Module descriptor is processed : org.springframework#spring-tx;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-web;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-webmvc;4.3.18.RELEASE
Sort dependencies of : org.springframework.security#spring-security-web;4.2.7.RELEASE / Number of dependencies = 31
Sort dependencies of : aopalliance#aopalliance;1.0 / Number of dependencies = 0
Sort done for : aopalliance#aopalliance;1.0
Sort dependencies of : org.springframework.security#spring-security-core;4.2.7.RELEASE / Number of dependencies = 28
Module descriptor is processed : aopalliance#aopalliance;1.0
Module descriptor is processed : org.springframework#spring-aop;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-beans;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-expression;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.security#spring-security-core depends on com.fasterxml.jackson.core#jackson-databind;2.8.11.1, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : commons-logging#commons-logging;1.2
Non matching revision detected when sorting. org.springframework.security#spring-security-core depends on org.aspectj#aspectjrt;1.8.12, doesn’t match org.aspectj#aspectjrt;1.8.13
Module descriptor is processed : org.springframework#spring-tx;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.security#spring-security-core depends on ch.qos.logback#logback-classic;1.1.2, doesn’t match ch.qos.logback#logback-classic;1.1.11
Sort dependencies of : commons-collections#commons-collections;3.2.2 / Number of dependencies = 1
Non matching revision detected when sorting. commons-collections#commons-collections depends on junit#junit;3.8.1, doesn’t match junit#junit;4.12
Sort done for : commons-collections#commons-collections;3.2.2
Module descriptor is processed : junit#junit;4.12
Non matching revision detected when sorting. org.springframework.security#spring-security-core depends on org.assertj#assertj-core;2.2.0, doesn’t match org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.skyscreamer#jsonassert;1.4.0
Module descriptor is processed : org.slf4j#jcl-over-slf4j;1.7.25
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.security#spring-security-core;4.2.7.RELEASE
Module descriptor is processed : org.springframework#spring-beans;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-expression;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-web;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.security#spring-security-web depends on com.fasterxml.jackson.core#jackson-databind;2.8.11.1, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : commons-logging#commons-logging;1.2
Module descriptor is processed : org.springframework#spring-tx;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-webmvc;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.security#spring-security-web depends on ch.qos.logback#logback-classic;1.1.2, doesn’t match ch.qos.logback#logback-classic;1.1.11
Non matching revision detected when sorting. org.springframework.security#spring-security-web depends on commons-codec#commons-codec;1.3, doesn’t match commons-codec#commons-codec;1.10
Module descriptor is processed : junit#junit;4.12
Non matching revision detected when sorting. org.springframework.security#spring-security-web depends on org.assertj#assertj-core;2.2.0, doesn’t match org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.skyscreamer#jsonassert;1.4.0
Module descriptor is processed : org.slf4j#jcl-over-slf4j;1.7.25
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.security#spring-security-web;4.2.7.RELEASE
Sort dependencies of : org.springframework.security#spring-security-config;4.2.7.RELEASE / Number of dependencies = 52
Module descriptor is processed : aopalliance#aopalliance;1.0
Module descriptor is processed : org.springframework.security#spring-security-core;4.2.7.RELEASE
Module descriptor is processed : org.springframework#spring-aop;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-beans;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Module descriptor is processed : commons-logging#commons-logging;1.2
Non matching revision detected when sorting. org.springframework.security#spring-security-config depends on org.aspectj#aspectjweaver;1.8.12, doesn’t match org.aspectj#aspectjweaver;1.8.13
Module descriptor is processed : org.springframework.security#spring-security-web;4.2.7.RELEASE
Module descriptor is processed : org.springframework#spring-tx;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-web;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-webmvc;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.security#spring-security-config depends on ch.qos.logback#logback-classic;1.1.2, doesn’t match ch.qos.logback#logback-classic;1.1.11
Module descriptor is processed : junit#junit;4.12
Non matching revision detected when sorting. org.springframework.security#spring-security-config depends on org.assertj#assertj-core;2.2.0, doesn’t match org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.slf4j#jcl-over-slf4j;1.7.25
Module descriptor is processed : org.springframework#spring-expression;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.security#spring-security-config;4.2.7.RELEASE
Sort dependencies of : org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE / Number of dependencies = 25
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on org.springframework#spring-beans;4.0.9.RELEASE, doesn’t match org.springframework#spring-beans;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on org.springframework#spring-core;4.0.9.RELEASE, doesn’t match org.springframework#spring-core;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on org.springframework#spring-context;4.0.9.RELEASE, doesn’t match org.springframework#spring-context;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on org.springframework#spring-aop;4.0.9.RELEASE, doesn’t match org.springframework#spring-aop;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on org.springframework#spring-webmvc;4.0.9.RELEASE, doesn’t match org.springframework#spring-webmvc;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on org.springframework#spring-test;4.0.9.RELEASE, doesn’t match org.springframework#spring-test;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on org.springframework.security#spring-security-core;3.2.10.RELEASE, doesn’t match org.springframework.security#spring-security-core;4.2.7.RELEASE
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on org.springframework.security#spring-security-config;3.2.10.RELEASE, doesn’t match org.springframework.security#spring-security-config;4.2.7.RELEASE
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on org.springframework.security#spring-security-web;3.2.10.RELEASE, doesn’t match org.springframework.security#spring-security-web;4.2.7.RELEASE
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on commons-codec#commons-codec;1.9, doesn’t match commons-codec#commons-codec;1.10
Sort dependencies of : org.codehaus.jackson#jackson-mapper-asl;1.9.13 / Number of dependencies = 1
Sort dependencies of : org.codehaus.jackson#jackson-core-asl;1.9.13 / Number of dependencies = 0
Sort done for : org.codehaus.jackson#jackson-core-asl;1.9.13
Sort done for : org.codehaus.jackson#jackson-mapper-asl;1.9.13
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on com.fasterxml.jackson.core#jackson-annotations;2.3.2, doesn’t match com.fasterxml.jackson.core#jackson-annotations;2.8.0
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on com.fasterxml.jackson.core#jackson-databind;2.3.2, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on org.apache.httpcomponents#httpclient;4.3.3, doesn’t match org.apache.httpcomponents#httpclient;4.5.5
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on junit#junit;4.11, doesn’t match junit#junit;4.12
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on org.mockito#mockito-core;1.9.5, doesn’t match org.mockito#mockito-core;1.10.19
Non matching revision detected when sorting. org.springframework.security.oauth#spring-security-oauth2 depends on org.slf4j#slf4j-api;1.7.6, doesn’t match org.slf4j#slf4j-api;1.7.25
Sort done for : org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE
Sort dependencies of : org.springframework.amqp#spring-rabbit;1.7.8.RELEASE / Number of dependencies = 12
Non matching revision detected when sorting. org.springframework.amqp#spring-rabbit depends on org.springframework#spring-aop;4.3.15.RELEASE, doesn’t match org.springframework#spring-aop;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.amqp#spring-rabbit depends on org.springframework#spring-tx;4.3.15.RELEASE, doesn’t match org.springframework#spring-tx;4.3.18.RELEASE
Sort dependencies of : org.springframework.amqp#spring-amqp;1.7.8.RELEASE / Number of dependencies = 8
Non matching revision detected when sorting. org.springframework.amqp#spring-amqp depends on org.springframework#spring-core;4.3.15.RELEASE, doesn’t match org.springframework#spring-core;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.amqp#spring-amqp depends on com.fasterxml.jackson.core#jackson-databind;2.8.11.1, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Non matching revision detected when sorting. org.springframework.amqp#spring-amqp depends on org.springframework#spring-messaging;4.3.15.RELEASE, doesn’t match org.springframework#spring-messaging;4.3.18.RELEASE
Module descriptor is processed : org.codehaus.jackson#jackson-mapper-asl;1.9.13
Non matching revision detected when sorting. org.springframework.amqp#spring-amqp depends on org.springframework#spring-context;4.3.15.RELEASE, doesn’t match org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : org.codehaus.jackson#jackson-core-asl;1.9.13
Module descriptor is processed : com.fasterxml.jackson.core#jackson-core;2.8.11
Sort done for : org.springframework.amqp#spring-amqp;1.7.8.RELEASE
Sort dependencies of : org.springframework.retry#spring-retry;1.2.2.RELEASE / Number of dependencies = 10
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Non matching revision detected when sorting. org.springframework.retry#spring-retry depends on org.aspectj#aspectjrt;1.8.9, doesn’t match org.aspectj#aspectjrt;1.8.13
Non matching revision detected when sorting. org.springframework.retry#spring-retry depends on org.aspectj#aspectjweaver;1.8.9, doesn’t match org.aspectj#aspectjweaver;1.8.13
Non matching revision detected when sorting. org.springframework.retry#spring-retry depends on org.springframework#spring-test;4.3.13.RELEASE, doesn’t match org.springframework#spring-test;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.retry#spring-retry depends on org.springframework#spring-context;4.3.13.RELEASE, doesn’t match org.springframework#spring-context;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.retry#spring-retry depends on org.springframework#spring-core;4.3.13.RELEASE, doesn’t match org.springframework#spring-core;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.retry#spring-retry depends on org.springframework#spring-tx;4.3.13.RELEASE, doesn’t match org.springframework#spring-tx;4.3.18.RELEASE
Sort done for : org.springframework.retry#spring-retry;1.2.2.RELEASE
Sort dependencies of : com.rabbitmq#http-client;1.1.1.RELEASE / Number of dependencies = 3
Non matching revision detected when sorting. com.rabbitmq#http-client depends on org.springframework#spring-web;4.3.6.RELEASE, doesn’t match org.springframework#spring-web;4.3.18.RELEASE
Non matching revision detected when sorting. com.rabbitmq#http-client depends on org.apache.httpcomponents#httpclient;4.3.6, doesn’t match org.apache.httpcomponents#httpclient;4.5.5
Non matching revision detected when sorting. com.rabbitmq#http-client depends on com.fasterxml.jackson.core#jackson-databind;2.8.4, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Sort done for : com.rabbitmq#http-client;1.1.1.RELEASE
Sort dependencies of : com.rabbitmq#amqp-client;4.0.3 / Number of dependencies = 7
Non matching revision detected when sorting. com.rabbitmq#amqp-client depends on org.slf4j#slf4j-api;1.7.21, doesn’t match org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : junit#junit;4.12
Non matching revision detected when sorting. com.rabbitmq#amqp-client depends on ch.qos.logback#logback-classic;1.1.7, doesn’t match ch.qos.logback#logback-classic;1.1.11
Non matching revision detected when sorting. com.rabbitmq#amqp-client depends on org.mockito#mockito-core;2.7.9, doesn’t match org.mockito#mockito-core;1.10.19
Sort done for : com.rabbitmq#amqp-client;4.0.3
Module descriptor is processed : ch.qos.logback#logback-classic;1.1.11
Non matching revision detected when sorting. org.springframework.amqp#spring-rabbit depends on org.springframework#spring-messaging;4.3.15.RELEASE, doesn’t match org.springframework#spring-messaging;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.amqp#spring-rabbit depends on org.springframework#spring-context;4.3.15.RELEASE, doesn’t match org.springframework#spring-context;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.amqp#spring-rabbit depends on org.springframework#spring-web;4.3.15.RELEASE, doesn’t match org.springframework#spring-web;4.3.18.RELEASE
Sort done for : org.springframework.amqp#spring-rabbit;1.7.8.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE / Number of dependencies = 17
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-spring-service-connector depends on org.springframework.amqp#spring-rabbit;1.1.1.RELEASE, doesn’t match org.springframework.amqp#spring-rabbit;1.7.8.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE / Number of dependencies = 0
Sort done for : org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-spring-service-connector depends on org.springframework#spring-context;3.1.4.RELEASE, doesn’t match org.springframework#spring-context;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-spring-service-connector depends on org.springframework#spring-context-support;3.1.4.RELEASE, doesn’t match org.springframework#spring-context-support;4.3.18.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE
Sort dependencies of : org.aspectj#aspectjweaver;1.8.13 / Number of dependencies = 0
Sort done for : org.aspectj#aspectjweaver;1.8.13
Module descriptor is processed : org.springframework.boot#spring-boot;1.5.14.RELEASE
Sort dependencies of : org.springframework.boot#spring-boot-test;1.5.14.RELEASE / Number of dependencies = 33
Module descriptor is processed : org.springframework.boot#spring-boot;1.5.14.RELEASE
Module descriptor is processed : com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : com.google.code.gson#gson;2.8.5
Module descriptor is processed : com.jayway.jsonpath#json-path;2.2.0
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.apache.httpcomponents#httpclient;4.5.5
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.hamcrest#hamcrest-core;1.3
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.skyscreamer#jsonassert;1.4.0
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-web;4.3.18.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot;1.5.14.RELEASE
Module descriptor is processed : ch.qos.logback#logback-classic;1.1.11
Module descriptor is processed : org.apache.tomcat.embed#tomcat-embed-core;8.5.31
Non matching revision detected when sorting. org.springframework.boot#spring-boot-test depends on org.codehaus.groovy#groovy;2.4.15, doesn’t match org.codehaus.groovy#groovy;2.5.0
Module descriptor is processed : org.codehaus.groovy#groovy;2.4.15
Non matching revision detected when sorting. org.springframework.boot#spring-boot-test depends on org.codehaus.groovy#groovy-xml;2.4.15, doesn’t match org.codehaus.groovy#groovy-xml;2.5.0
Module descriptor is processed : org.slf4j#jcl-over-slf4j;1.7.25
Module descriptor is processed : org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : org.springframework#spring-webmvc;4.3.18.RELEASE
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-test;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-test;1.5.14.RELEASE
Module descriptor is processed : ch.qos.logback#logback-classic;1.1.11
Sort dependencies of : org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31 / Number of dependencies = 1
Module descriptor is processed : org.apache.tomcat.embed#tomcat-embed-core;8.5.31
Sort done for : org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Module descriptor is processed : org.yaml#snakeyaml;1.17
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
Sort dependencies of : org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE / Number of dependencies = 9
Module descriptor is processed : ch.qos.logback#logback-classic;1.1.11
Module descriptor is processed : org.slf4j#jcl-over-slf4j;1.7.25
Module descriptor is processed : org.slf4j#jul-to-slf4j;1.7.25
Sort dependencies of : org.slf4j#log4j-over-slf4j;1.7.25 / Number of dependencies = 3
Module descriptor is processed : org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : junit#junit;4.12
Sort done for : org.slf4j#log4j-over-slf4j;1.7.25
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Module descriptor is processed : org.yaml#snakeyaml;1.17
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Sort dependencies of : org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE / Number of dependencies = 8
Module descriptor is processed : org.apache.tomcat.embed#tomcat-embed-core;8.5.31
Module descriptor is processed : org.apache.tomcat.embed#tomcat-embed-el;8.5.31
Module descriptor is processed : org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE
Module descriptor is processed : org.hibernate#hibernate-validator;5.3.6.Final
Module descriptor is processed : com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : org.springframework#spring-web;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-webmvc;4.3.18.RELEASE
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Sort dependencies of : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE / Number of dependencies = 16
Module descriptor is processed : org.springframework.boot#spring-boot-test;1.5.14.RELEASE
Sort dependencies of : org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE / Number of dependencies = 36
Module descriptor is processed : org.springframework.boot#spring-boot-test;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : com.jayway.jsonpath#json-path;2.2.0
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-web;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-webmvc;4.3.18.RELEASE
Module descriptor is processed : org.springframework.security#spring-security-config;4.2.7.RELEASE
Module descriptor is processed : ch.qos.logback#logback-classic;1.1.11
Sort dependencies of : org.aspectj#aspectjrt;1.8.13 / Number of dependencies = 0
Sort done for : org.aspectj#aspectjrt;1.8.13
Module descriptor is processed : org.aspectj#aspectjweaver;1.8.13
Module descriptor is processed : org.skyscreamer#jsonassert;1.4.0
Module descriptor is processed : org.hibernate#hibernate-validator;5.3.6.Final
Module descriptor is processed : org.apache.tomcat.embed#tomcat-embed-el;8.5.31
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : com.jayway.jsonpath#json-path;2.2.0
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-core;1.3
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.skyscreamer#jsonassert;1.4.0
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort dependencies of : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE / Number of dependencies = 7
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Sort dependencies of : org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE / Number of dependencies = 75
Module descriptor is processed : org.springframework.boot#spring-boot;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11
Sort dependencies of : com.google.guava#guava;18.0 / Number of dependencies = 1
Non matching revision detected when sorting. com.google.guava#guava depends on com.google.code.findbugs#jsr305;1.3.9, doesn’t match com.google.code.findbugs#jsr305;3.0.1
Sort done for : com.google.guava#guava;18.0
Module descriptor is processed : org.hibernate#hibernate-validator;5.3.6.Final
Module descriptor is processed : org.springframework#spring-messaging;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-webmvc;4.3.18.RELEASE
Module descriptor is processed : org.springframework.integration#spring-integration-core;4.3.17.RELEASE
Module descriptor is processed : org.springframework.security#spring-security-web;4.2.7.RELEASE
Module descriptor is processed : org.springframework.security#spring-security-config;4.2.7.RELEASE
Module descriptor is processed : org.apache.tomcat.embed#tomcat-embed-core;8.5.31
Module descriptor is processed : org.apache.tomcat.embed#tomcat-embed-el;8.5.31
Module descriptor is processed : org.springframework.amqp#spring-rabbit;1.7.8.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-test;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-test;1.5.14.RELEASE
Module descriptor is processed : ch.qos.logback#logback-classic;1.1.11
Module descriptor is processed : com.jayway.jsonpath#json-path;2.2.0
Module descriptor is processed : org.aspectj#aspectjrt;1.8.13
Module descriptor is processed : org.skyscreamer#jsonassert;1.4.0
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Module descriptor is processed : org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE
Module descriptor is processed : org.yaml#snakeyaml;1.17
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE / Number of dependencies = 11
Sort dependencies of : org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE / Number of dependencies = 16
Module descriptor is processed : org.springframework#spring-web;4.3.18.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE / Number of dependencies = 15
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Sort dependencies of : org.springframework.security#spring-security-crypto;4.2.7.RELEASE / Number of dependencies = 8
Module descriptor is processed : commons-logging#commons-logging;1.2
Non matching revision detected when sorting. org.springframework.security#spring-security-crypto depends on org.bouncycastle#bcpkix-jdk15on;1.54, doesn’t match org.bouncycastle#bcpkix-jdk15on;1.55
Non matching revision detected when sorting. org.springframework.security#spring-security-crypto depends on ch.qos.logback#logback-classic;1.1.2, doesn’t match ch.qos.logback#logback-classic;1.1.11
Module descriptor is processed : junit#junit;4.12
Non matching revision detected when sorting. org.springframework.security#spring-security-crypto depends on org.assertj#assertj-core;2.2.0, doesn’t match org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.slf4j#jcl-over-slf4j;1.7.25
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.security#spring-security-crypto;4.2.7.RELEASE
Sort dependencies of : org.springframework.security#spring-security-rsa;1.0.3.RELEASE / Number of dependencies = 5
Non matching revision detected when sorting. org.springframework.security#spring-security-rsa depends on org.springframework.security#spring-security-crypto;3.2.8.RELEASE, doesn’t match org.springframework.security#spring-security-crypto;4.2.7.RELEASE
Non matching revision detected when sorting. org.springframework.security#spring-security-rsa depends on org.springframework#spring-core;4.1.9.RELEASE, doesn’t match org.springframework#spring-core;4.3.18.RELEASE
Sort dependencies of : org.bouncycastle#bcpkix-jdk15on;1.55 / Number of dependencies = 1
Sort dependencies of : org.bouncycastle#bcprov-jdk15on;1.55 / Number of dependencies = 0
Sort done for : org.bouncycastle#bcprov-jdk15on;1.55
Sort done for : org.bouncycastle#bcpkix-jdk15on;1.55
Non matching revision detected when sorting. org.springframework.security#spring-security-rsa depends on junit#junit;4.11, doesn’t match junit#junit;4.12
Sort done for : org.springframework.security#spring-security-rsa;1.0.3.RELEASE
Module descriptor is processed : org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE
Sort dependencies of : org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE / Number of dependencies = 8
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Module descriptor is processed : org.springframework#spring-aop;4.3.18.RELEASE
Module descriptor is processed : org.aspectj#aspectjweaver;1.8.13
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE
Module descriptor is processed : org.springframework.retry#spring-retry;1.2.2.RELEASE
Module descriptor is processed : com.jayway.jsonpath#json-path;2.2.0
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-commons depends on org.apache.httpcomponents#httpclient;4.5.1, doesn’t match org.apache.httpcomponents#httpclient;4.5.5
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE / Number of dependencies = 12
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE
Module descriptor is processed : org.springframework.security#spring-security-crypto;4.2.7.RELEASE
Module descriptor is processed : org.springframework.security#spring-security-rsa;1.0.3.RELEASE
Module descriptor is processed : org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
Sort dependencies of : org.springframework.vault#spring-vault-core;1.1.2.RELEASE / Number of dependencies = 17
Non matching revision detected when sorting. org.springframework.vault#spring-vault-core depends on com.fasterxml.jackson.core#jackson-databind;2.8.11.1, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Non matching revision detected when sorting. org.springframework.vault#spring-vault-core depends on org.springframework#spring-core;4.3.15.RELEASE, doesn’t match org.springframework#spring-core;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.vault#spring-vault-core depends on org.springframework#spring-beans;4.3.15.RELEASE, doesn’t match org.springframework#spring-beans;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.vault#spring-vault-core depends on org.springframework#spring-web;4.3.15.RELEASE, doesn’t match org.springframework#spring-web;4.3.18.RELEASE
Module descriptor is processed : org.apache.httpcomponents#httpclient;4.5.5
Module descriptor is processed : org.apache.httpcomponents#httpcore;4.4.9
Non matching revision detected when sorting. org.springframework.vault#spring-vault-core depends on com.amazonaws#aws-java-sdk-core;1.11.208, doesn’t match com.amazonaws#aws-java-sdk-core;1.11.125
Non matching revision detected when sorting. org.springframework.vault#spring-vault-core depends on org.springframework#spring-test;4.3.15.RELEASE, doesn’t match org.springframework#spring-test;4.3.18.RELEASE
Module descriptor is processed : junit#junit;4.12
Non matching revision detected when sorting. org.springframework.vault#spring-vault-core depends on org.mockito#mockito-core;2.10.0, doesn’t match org.mockito#mockito-core;1.10.19
Non matching revision detected when sorting. org.springframework.vault#spring-vault-core depends on org.assertj#assertj-core;3.8.0, doesn’t match org.assertj#assertj-core;2.6.0
Non matching revision detected when sorting. org.springframework.vault#spring-vault-core depends on com.jayway.jsonpath#json-path;2.4.0, doesn’t match com.jayway.jsonpath#json-path;2.2.0
Sort done for : org.springframework.vault#spring-vault-core;1.1.2.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-vault-config depends on com.amazonaws#aws-java-sdk-core;1.11.345, doesn’t match com.amazonaws#aws-java-sdk-core;1.11.125
Module descriptor is processed : org.apache.httpcomponents#httpcore;4.4.9
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE
Module descriptor is processed : org.hibernate#hibernate-validator;5.3.6.Final
Module descriptor is processed : org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-vault-config depends on org.assertj#assertj-core;2.8.0, doesn’t match org.assertj#assertj-core;2.6.0
Sort done for : org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE
Sort dependencies of : org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE / Number of dependencies = 8
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Module descriptor is processed : org.springframework#spring-messaging;4.3.18.RELEASE
Module descriptor is processed : org.springframework.amqp#spring-rabbit;1.7.8.RELEASE
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE
Module descriptor is processed : org.hibernate#hibernate-validator;5.3.6.Final
Module descriptor is processed : org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-vault-config-rabbitmq depends on org.assertj#assertj-core;2.8.0, doesn’t match org.assertj#assertj-core;2.6.0
Sort done for : org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE / Number of dependencies = 12
Module descriptor is processed : org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE / Number of dependencies = 4
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE / Number of dependencies = 9
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE / Number of dependencies = 16
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE
Module descriptor is processed : org.springframework.retry#spring-retry;1.2.2.RELEASE
Sort dependencies of : com.ecwid.consul#consul-api;1.3.0 / Number of dependencies = 8
Non matching revision detected when sorting. com.ecwid.consul#consul-api depends on com.google.code.gson#gson;2.8.2, doesn’t match com.google.code.gson#gson;2.8.5
Non matching revision detected when sorting. com.ecwid.consul#consul-api depends on com.google.code.gson#gson;2.8.2, doesn’t match com.google.code.gson#gson;2.3.1
Non matching revision detected when sorting. com.ecwid.consul#consul-api depends on org.apache.httpcomponents#httpcore;4.4.8, doesn’t match org.apache.httpcomponents#httpcore;4.4.9
Non matching revision detected when sorting. com.ecwid.consul#consul-api depends on org.apache.httpcomponents#httpclient;4.5.3, doesn’t match org.apache.httpcomponents#httpclient;4.5.5
Module descriptor is processed : junit#junit;4.12
Non matching revision detected when sorting. com.ecwid.consul#consul-api depends on org.mockito#mockito-core;2.8.9, doesn’t match org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Sort done for : com.ecwid.consul#consul-api;1.3.0
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-consul-core depends on com.google.code.gson#gson;2.3.1, doesn’t match com.google.code.gson#gson;2.8.5
Module descriptor is processed : com.google.code.gson#gson;2.3.1
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-consul-core depends on org.apache.httpcomponents#httpclient;4.5.2, doesn’t match org.apache.httpcomponents#httpclient;4.5.5
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-consul-core depends on org.apache.httpcomponents#httpcore;4.4.5, doesn’t match org.apache.httpcomponents#httpcore;4.4.9
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-consul-core depends on org.apache.httpcomponents#httpclient;4.5.2, doesn’t match org.apache.httpcomponents#httpclient;4.5.5
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-consul-core depends on org.apache.httpcomponents#httpcore;4.4.5, doesn’t match org.apache.httpcomponents#httpcore;4.4.9
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE
Module descriptor is processed : com.ecwid.consul#consul-api;1.3.0
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-starter-consul depends on com.google.code.gson#gson;2.3.1, doesn’t match com.google.code.gson#gson;2.8.5
Module descriptor is processed : com.google.code.gson#gson;2.3.1
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-starter-consul depends on org.apache.httpcomponents#httpclient;4.5.2, doesn’t match org.apache.httpcomponents#httpclient;4.5.5
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-starter-consul depends on org.apache.httpcomponents#httpcore;4.4.5, doesn’t match org.apache.httpcomponents#httpcore;4.4.9
Sort done for : org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE / Number of dependencies = 11
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Module descriptor is processed : com.ecwid.consul#consul-api;1.3.0
Module descriptor is processed : org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
Module descriptor is processed : org.springframework.retry#spring-retry;1.2.2.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE / Number of dependencies = 8
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE / Number of dependencies = 24
Module descriptor is processed : org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE / Number of dependencies = 15
Module descriptor is processed : org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
Module descriptor is processed : org.springframework#spring-web;4.3.18.RELEASE
Module descriptor is processed : com.fasterxml.jackson.core#jackson-annotations;2.8.0
Module descriptor is processed : org.springframework.retry#spring-retry;1.2.2.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE
Module descriptor is processed : com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Module descriptor is processed : commons-codec#commons-codec;1.10
Sort done for : org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE / Number of dependencies = 15
Module descriptor is processed : org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.security#spring-security-crypto;4.2.7.RELEASE
Module descriptor is processed : org.springframework.security#spring-security-rsa;1.0.3.RELEASE
Sort dependencies of : org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r / Number of dependencies = 3
Non matching revision detected when sorting. org.eclipse.jgit#org.eclipse.jgit depends on com.jcraft#jsch;0.1.50, doesn’t match com.jcraft#jsch;0.1.54
Sort dependencies of : com.googlecode.javaewah#JavaEWAH;0.7.9 / Number of dependencies = 1
Non matching revision detected when sorting. com.googlecode.javaewah#JavaEWAH depends on junit#junit;4.10, doesn’t match junit#junit;4.12
Sort done for : com.googlecode.javaewah#JavaEWAH;0.7.9
Non matching revision detected when sorting. org.eclipse.jgit#org.eclipse.jgit depends on org.apache.httpcomponents#httpclient;4.1.3, doesn’t match org.apache.httpcomponents#httpclient;4.5.5
Sort done for : org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r
Module descriptor is processed : org.yaml#snakeyaml;1.17
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-config-server depends on com.amazonaws#aws-java-sdk-core;1.11.52, doesn’t match com.amazonaws#aws-java-sdk-core;1.11.125
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE
Module descriptor is processed : com.ecwid.consul#consul-api;1.3.0
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-consul-discovery depends on com.google.code.gson#gson;2.3.1, doesn’t match com.google.code.gson#gson;2.8.5
Module descriptor is processed : com.google.code.gson#gson;2.3.1
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-consul-discovery depends on org.apache.httpcomponents#httpclient;4.5.2, doesn’t match org.apache.httpcomponents#httpclient;4.5.5
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-consul-discovery depends on org.apache.httpcomponents#httpcore;4.4.5, doesn’t match org.apache.httpcomponents#httpcore;4.4.9
Sort dependencies of : org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE / Number of dependencies = 38
Module descriptor is processed : org.springframework.boot#spring-boot;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Sort dependencies of : org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE / Number of dependencies = 9
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Module descriptor is processed : org.springframework#spring-aop;4.3.18.RELEASE
Module descriptor is processed : org.springframework.security#spring-security-config;4.2.7.RELEASE
Module descriptor is processed : org.springframework.security#spring-security-web;4.2.7.RELEASE
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE
Module descriptor is processed : org.springframework.retry#spring-retry;1.2.2.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
Sort dependencies of : com.netflix.archaius#archaius-core;0.7.4 / Number of dependencies = 7
Sort dependencies of : com.google.code.findbugs#jsr305;3.0.1 / Number of dependencies = 0
Sort done for : com.google.code.findbugs#jsr305;3.0.1
Sort dependencies of : commons-configuration#commons-configuration;1.8 / Number of dependencies = 27
Non matching revision detected when sorting. commons-configuration#commons-configuration depends on commons-collections#commons-collections;3.2.1, doesn’t match commons-collections#commons-collections;3.2.2
Sort dependencies of : commons-lang#commons-lang;2.6 / Number of dependencies = 1
Non matching revision detected when sorting. commons-lang#commons-lang depends on junit#junit;3.8.1, doesn’t match junit#junit;4.12
Sort done for : commons-lang#commons-lang;2.6
Non matching revision detected when sorting. commons-configuration#commons-configuration depends on commons-logging#commons-logging;1.1.1, doesn’t match commons-logging#commons-logging;1.2
Non matching revision detected when sorting. commons-configuration#commons-configuration depends on commons-beanutils#commons-beanutils;1.8.3, doesn’t match commons-beanutils#commons-beanutils;1.9.3
Non matching revision detected when sorting. commons-configuration#commons-configuration depends on commons-codec#commons-codec;1.5, doesn’t match commons-codec#commons-codec;1.10
Sort dependencies of : commons-jxpath#commons-jxpath;1.3 / Number of dependencies = 8
Non matching revision detected when sorting. commons-jxpath#commons-jxpath depends on junit#junit;3.8.1, doesn’t match junit#junit;4.12
Non matching revision detected when sorting. commons-jxpath#commons-jxpath depends on commons-beanutils#commons-beanutils;1.7.0, doesn’t match commons-beanutils#commons-beanutils;1.9.3
Sort done for : commons-jxpath#commons-jxpath;1.3
Non matching revision detected when sorting. commons-configuration#commons-configuration depends on junit#junit;4.10, doesn’t match junit#junit;4.12
Non matching revision detected when sorting. commons-configuration#commons-configuration depends on org.slf4j#slf4j-api;1.5.6, doesn’t match org.slf4j#slf4j-api;1.7.25
Sort done for : commons-configuration#commons-configuration;1.8
Non matching revision detected when sorting. com.netflix.archaius#archaius-core depends on org.slf4j#slf4j-api;1.6.4, doesn’t match org.slf4j#slf4j-api;1.7.25
Non matching revision detected when sorting. com.netflix.archaius#archaius-core depends on com.google.guava#guava;16.0, doesn’t match com.google.guava#guava;18.0
Non matching revision detected when sorting. com.netflix.archaius#archaius-core depends on com.fasterxml.jackson.core#jackson-annotations;2.4.3, doesn’t match com.fasterxml.jackson.core#jackson-annotations;2.8.0
Non matching revision detected when sorting. com.netflix.archaius#archaius-core depends on com.fasterxml.jackson.core#jackson-core;2.4.3, doesn’t match com.fasterxml.jackson.core#jackson-core;2.8.11
Non matching revision detected when sorting. com.netflix.archaius#archaius-core depends on com.fasterxml.jackson.core#jackson-databind;2.4.3, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Sort done for : com.netflix.archaius#archaius-core;0.7.4
Module descriptor is processed : commons-configuration#commons-configuration;1.8
Sort dependencies of : com.netflix.servo#servo-core;0.10.1 / Number of dependencies = 4
Non matching revision detected when sorting. com.netflix.servo#servo-core depends on org.slf4j#slf4j-api;1.7.12, doesn’t match org.slf4j#slf4j-api;1.7.25
Non matching revision detected when sorting. com.netflix.servo#servo-core depends on com.google.guava#guava;16.0.1, doesn’t match com.google.guava#guava;18.0
Sort dependencies of : com.google.code.findbugs#annotations;2.0.0 / Number of dependencies = 0
Sort done for : com.google.code.findbugs#annotations;2.0.0
Sort dependencies of : com.netflix.servo#servo-internal;0.10.1 / Number of dependencies = 3
Non matching revision detected when sorting. com.netflix.servo#servo-internal depends on org.slf4j#slf4j-api;1.7.12, doesn’t match org.slf4j#slf4j-api;1.7.25
Non matching revision detected when sorting. com.netflix.servo#servo-internal depends on com.google.guava#guava;16.0.1, doesn’t match com.google.guava#guava;18.0
Module descriptor is processed : com.google.code.findbugs#annotations;2.0.0
Sort done for : com.netflix.servo#servo-internal;0.10.1
Sort done for : com.netflix.servo#servo-core;0.10.1
Sort dependencies of : com.netflix.netflix-commons#netflix-commons-util;0.1.1 / Number of dependencies = 3
Non matching revision detected when sorting. com.netflix.netflix-commons#netflix-commons-util depends on junit#junit;4.10, doesn’t match junit#junit;4.12
Non matching revision detected when sorting. com.netflix.netflix-commons#netflix-commons-util depends on org.slf4j#slf4j-api;1.6.4, doesn’t match org.slf4j#slf4j-api;1.7.25
Sort done for : com.netflix.netflix-commons#netflix-commons-util;0.1.1
Module descriptor is processed : javax.inject#javax.inject;1
Sort dependencies of : com.netflix.ribbon#ribbon-loadbalancer;2.2.5 / Number of dependencies = 8
Sort dependencies of : com.netflix.ribbon#ribbon-core;2.2.5 / Number of dependencies = 6
Non matching revision detected when sorting. com.netflix.ribbon#ribbon-core depends on org.slf4j#slf4j-api;1.6.4, doesn’t match org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : com.google.code.findbugs#annotations;2.0.0
Non matching revision detected when sorting. com.netflix.ribbon#ribbon-core depends on com.google.guava#guava;16.0, doesn’t match com.google.guava#guava;18.0
Module descriptor is processed : commons-configuration#commons-configuration;1.8
Module descriptor is processed : commons-lang#commons-lang;2.6
Module descriptor is processed : com.netflix.archaius#archaius-core;0.7.4
Sort done for : com.netflix.ribbon#ribbon-core;2.2.5
Sort dependencies of : com.netflix.netflix-commons#netflix-statistics;0.1.1 / Number of dependencies = 4
Non matching revision detected when sorting. com.netflix.netflix-commons#netflix-statistics depends on junit#junit;4.10, doesn’t match junit#junit;4.12
Non matching revision detected when sorting. com.netflix.netflix-commons#netflix-statistics depends on org.slf4j#slf4j-api;1.6.4, doesn’t match org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : com.google.code.findbugs#annotations;2.0.0
Sort done for : com.netflix.netflix-commons#netflix-statistics;0.1.1
Non matching revision detected when sorting. com.netflix.ribbon#ribbon-loadbalancer depends on io.reactivex#rxjava;1.0.9, doesn’t match io.reactivex#rxjava;1.2.0
Non matching revision detected when sorting. com.netflix.ribbon#ribbon-loadbalancer depends on org.slf4j#slf4j-api;1.7.12, doesn’t match org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : com.netflix.servo#servo-core;0.10.1
Non matching revision detected when sorting. com.netflix.ribbon#ribbon-loadbalancer depends on com.google.guava#guava;16.0.1, doesn’t match com.google.guava#guava;18.0
Module descriptor is processed : com.netflix.archaius#archaius-core;0.7.4
Module descriptor is processed : com.netflix.netflix-commons#netflix-commons-util;0.1.1
Sort done for : com.netflix.ribbon#ribbon-loadbalancer;2.2.5
Sort dependencies of : com.netflix.hystrix#hystrix-core;1.5.12 / Number of dependencies = 4
Non matching revision detected when sorting. com.netflix.hystrix#hystrix-core depends on org.slf4j#slf4j-api;1.7.0, doesn’t match org.slf4j#slf4j-api;1.7.25
Non matching revision detected when sorting. com.netflix.hystrix#hystrix-core depends on com.netflix.archaius#archaius-core;0.4.1, doesn’t match com.netflix.archaius#archaius-core;0.7.4
Sort dependencies of : io.reactivex#rxjava;1.2.0 / Number of dependencies = 0
Sort done for : io.reactivex#rxjava;1.2.0
Sort dependencies of : org.hdrhistogram#HdrHistogram;2.1.9 / Number of dependencies = 1
Non matching revision detected when sorting. org.hdrhistogram#HdrHistogram depends on junit#junit;4.10, doesn’t match junit#junit;4.12
Sort done for : org.hdrhistogram#HdrHistogram;2.1.9
Sort done for : com.netflix.hystrix#hystrix-core;1.5.12
Sort dependencies of : com.netflix.ribbon#ribbon;2.2.5 / Number of dependencies = 16
Module descriptor is processed : com.netflix.ribbon#ribbon-core;2.2.5
Sort dependencies of : com.netflix.ribbon#ribbon-transport;2.2.5 / Number of dependencies = 10
Module descriptor is processed : com.netflix.ribbon#ribbon-core;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-loadbalancer;2.2.5
Non matching revision detected when sorting. com.netflix.ribbon#ribbon-transport depends on io.reactivex#rxjava;1.0.10, doesn’t match io.reactivex#rxjava;1.2.0
Sort dependencies of : io.reactivex#rxnetty;0.4.9 / Number of dependencies = 4
Non matching revision detected when sorting. io.reactivex#rxnetty depends on io.reactivex#rxjava;1.0.10, doesn’t match io.reactivex#rxjava;1.2.0
Sort dependencies of : io.netty#netty-codec-http;4.0.27.Final / Number of dependencies = 11
Sort dependencies of : io.netty#netty-codec;4.0.27.Final / Number of dependencies = 14
Sort dependencies of : io.netty#netty-transport;4.0.27.Final / Number of dependencies = 9
Sort dependencies of : io.netty#netty-buffer;4.0.27.Final / Number of dependencies = 9
Sort dependencies of : io.netty#netty-common;4.0.27.Final / Number of dependencies = 12
Non matching revision detected when sorting. io.netty#netty-common depends on org.slf4j#slf4j-api;1.7.5, doesn’t match org.slf4j#slf4j-api;1.7.25
Non matching revision detected when sorting. io.netty#netty-common depends on commons-logging#commons-logging;1.1.3, doesn’t match commons-logging#commons-logging;1.2
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Non matching revision detected when sorting. io.netty#netty-common depends on org.mockito#mockito-core;1.10.8, doesn’t match org.mockito#mockito-core;1.10.19
Non matching revision detected when sorting. io.netty#netty-common depends on ch.qos.logback#logback-classic;1.0.13, doesn’t match ch.qos.logback#logback-classic;1.1.11
Sort done for : io.netty#netty-common;4.0.27.Final
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Non matching revision detected when sorting. io.netty#netty-buffer depends on org.mockito#mockito-core;1.10.8, doesn’t match org.mockito#mockito-core;1.10.19
Non matching revision detected when sorting. io.netty#netty-buffer depends on ch.qos.logback#logback-classic;1.0.13, doesn’t match ch.qos.logback#logback-classic;1.1.11
Sort done for : io.netty#netty-buffer;4.0.27.Final
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Non matching revision detected when sorting. io.netty#netty-transport depends on org.mockito#mockito-core;1.10.8, doesn’t match org.mockito#mockito-core;1.10.19
Non matching revision detected when sorting. io.netty#netty-transport depends on ch.qos.logback#logback-classic;1.0.13, doesn’t match ch.qos.logback#logback-classic;1.1.11
Sort done for : io.netty#netty-transport;4.0.27.Final
Non matching revision detected when sorting. io.netty#netty-codec depends on com.google.protobuf#protobuf-java;2.5.0, doesn’t match com.google.protobuf#protobuf-java;2.6.1
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Non matching revision detected when sorting. io.netty#netty-codec depends on org.mockito#mockito-core;1.10.8, doesn’t match org.mockito#mockito-core;1.10.19
Non matching revision detected when sorting. io.netty#netty-codec depends on ch.qos.logback#logback-classic;1.0.13, doesn’t match ch.qos.logback#logback-classic;1.1.11
Sort done for : io.netty#netty-codec;4.0.27.Final
Sort dependencies of : io.netty#netty-handler;4.0.27.Final / Number of dependencies = 17
Module descriptor is processed : io.netty#netty-buffer;4.0.27.Final
Module descriptor is processed : io.netty#netty-transport;4.0.27.Final
Module descriptor is processed : io.netty#netty-codec;4.0.27.Final
Non matching revision detected when sorting. io.netty#netty-handler depends on org.bouncycastle#bcpkix-jdk15on;1.50, doesn’t match org.bouncycastle#bcpkix-jdk15on;1.55
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Non matching revision detected when sorting. io.netty#netty-handler depends on org.mockito#mockito-core;1.10.8, doesn’t match org.mockito#mockito-core;1.10.19
Non matching revision detected when sorting. io.netty#netty-handler depends on ch.qos.logback#logback-classic;1.0.13, doesn’t match ch.qos.logback#logback-classic;1.1.11
Sort done for : io.netty#netty-handler;4.0.27.Final
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Non matching revision detected when sorting. io.netty#netty-codec-http depends on org.mockito#mockito-core;1.10.8, doesn’t match org.mockito#mockito-core;1.10.19
Non matching revision detected when sorting. io.netty#netty-codec-http depends on ch.qos.logback#logback-classic;1.0.13, doesn’t match ch.qos.logback#logback-classic;1.1.11
Sort done for : io.netty#netty-codec-http;4.0.27.Final
Sort dependencies of : io.netty#netty-transport-native-epoll;4.0.27.Final / Number of dependencies = 13
Module descriptor is processed : io.netty#netty-common;4.0.27.Final
Module descriptor is processed : io.netty#netty-buffer;4.0.27.Final
Module descriptor is processed : io.netty#netty-transport;4.0.27.Final
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Non matching revision detected when sorting. io.netty#netty-transport-native-epoll depends on org.mockito#mockito-core;1.10.8, doesn’t match org.mockito#mockito-core;1.10.19
Non matching revision detected when sorting. io.netty#netty-transport-native-epoll depends on ch.qos.logback#logback-classic;1.0.13, doesn’t match ch.qos.logback#logback-classic;1.1.11
Sort done for : io.netty#netty-transport-native-epoll;4.0.27.Final
Non matching revision detected when sorting. io.reactivex#rxnetty depends on org.slf4j#slf4j-api;1.7.6, doesn’t match org.slf4j#slf4j-api;1.7.25
Sort done for : io.reactivex#rxnetty;0.4.9
Sort dependencies of : io.reactivex#rxnetty-contexts;0.4.9 / Number of dependencies = 2
Non matching revision detected when sorting. io.reactivex#rxnetty-contexts depends on io.reactivex#rxjava;1.0.10, doesn’t match io.reactivex#rxjava;1.2.0
Module descriptor is processed : io.reactivex#rxnetty;0.4.9
Sort done for : io.reactivex#rxnetty-contexts;0.4.9
Sort dependencies of : io.reactivex#rxnetty-servo;0.4.9 / Number of dependencies = 3
Non matching revision detected when sorting. io.reactivex#rxnetty-servo depends on io.reactivex#rxjava;1.0.10, doesn’t match io.reactivex#rxjava;1.2.0
Module descriptor is processed : io.reactivex#rxnetty;0.4.9
Non matching revision detected when sorting. io.reactivex#rxnetty-servo depends on com.netflix.servo#servo-core;0.7.5, doesn’t match com.netflix.servo#servo-core;0.10.1
Sort done for : io.reactivex#rxnetty-servo;0.4.9
Module descriptor is processed : javax.inject#javax.inject;1
Non matching revision detected when sorting. com.netflix.ribbon#ribbon-transport depends on org.slf4j#slf4j-api;1.7.12, doesn’t match org.slf4j#slf4j-api;1.7.25
Non matching revision detected when sorting. com.netflix.ribbon#ribbon-transport depends on com.google.guava#guava;16.0.1, doesn’t match com.google.guava#guava;18.0
Module descriptor is processed : com.netflix.archaius#archaius-core;0.7.4
Sort done for : com.netflix.ribbon#ribbon-transport;2.2.5
Non matching revision detected when sorting. com.netflix.ribbon#ribbon depends on com.netflix.hystrix#hystrix-core;1.4.3, doesn’t match com.netflix.hystrix#hystrix-core;1.5.12
Module descriptor is processed : javax.inject#javax.inject;1
Non matching revision detected when sorting. com.netflix.ribbon#ribbon depends on io.reactivex#rxjava;1.0.10, doesn’t match io.reactivex#rxjava;1.2.0
Module descriptor is processed : io.reactivex#rxnetty;0.4.9
Module descriptor is processed : commons-configuration#commons-configuration;1.8
Non matching revision detected when sorting. com.netflix.ribbon#ribbon depends on com.google.guava#guava;16.0.1, doesn’t match com.google.guava#guava;18.0
Module descriptor is processed : com.netflix.archaius#archaius-core;0.7.4
Module descriptor is processed : junit#junit;4.12
Sort dependencies of : com.netflix.ribbon#ribbon-eureka;2.2.5 / Number of dependencies = 6
Module descriptor is processed : com.netflix.ribbon#ribbon-core;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-loadbalancer;2.2.5
Non matching revision detected when sorting. com.netflix.ribbon#ribbon-eureka depends on com.netflix.eureka#eureka-client;1.4.6, doesn’t match com.netflix.eureka#eureka-client;1.7.2
Module descriptor is processed : com.google.code.findbugs#annotations;2.0.0
Non matching revision detected when sorting. com.netflix.ribbon#ribbon-eureka depends on org.slf4j#slf4j-api;1.7.12, doesn’t match org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : com.netflix.archaius#archaius-core;0.7.4
Sort done for : com.netflix.ribbon#ribbon-eureka;2.2.5
Sort done for : com.netflix.ribbon#ribbon;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-core;2.2.5
Sort dependencies of : com.netflix.ribbon#ribbon-httpclient;2.2.5 / Number of dependencies = 12
Module descriptor is processed : com.netflix.ribbon#ribbon-core;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-loadbalancer;2.2.5
Module descriptor is processed : commons-collections#commons-collections;3.2.2
Non matching revision detected when sorting. com.netflix.ribbon#ribbon-httpclient depends on org.apache.httpcomponents#httpclient;4.2.1, doesn’t match org.apache.httpcomponents#httpclient;4.5.5
Module descriptor is processed : com.google.code.findbugs#annotations;2.0.0
Sort dependencies of : com.sun.jersey#jersey-client;1.19.1 / Number of dependencies = 3
Non matching revision detected when sorting. com.sun.jersey#jersey-client depends on junit#junit;4.8.2, doesn’t match junit#junit;4.12
Sort done for : com.sun.jersey#jersey-client;1.19.1
Sort dependencies of : com.sun.jersey.contribs#jersey-apache-client4;1.19.1 / Number of dependencies = 2
Non matching revision detected when sorting. com.sun.jersey.contribs#jersey-apache-client4 depends on org.apache.httpcomponents#httpclient;4.1.1, doesn’t match org.apache.httpcomponents#httpclient;4.5.5
Non matching revision detected when sorting. com.sun.jersey.contribs#jersey-apache-client4 depends on junit#junit;4.8.2, doesn’t match junit#junit;4.12
Sort done for : com.sun.jersey.contribs#jersey-apache-client4;1.19.1
Non matching revision detected when sorting. com.netflix.ribbon#ribbon-httpclient depends on org.slf4j#slf4j-api;1.7.12, doesn’t match org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : com.netflix.servo#servo-core;0.10.1
Non matching revision detected when sorting. com.netflix.ribbon#ribbon-httpclient depends on com.google.guava#guava;16.0.1, doesn’t match com.google.guava#guava;18.0
Module descriptor is processed : com.netflix.archaius#archaius-core;0.7.4
Module descriptor is processed : com.netflix.netflix-commons#netflix-commons-util;0.1.1
Sort done for : com.netflix.ribbon#ribbon-httpclient;2.2.5
Module descriptor is processed : io.reactivex#rxjava;1.2.0
Module descriptor is processed : com.sun.jersey.contribs#jersey-apache-client4;1.19.1
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Module descriptor is processed : org.aspectj#aspectjweaver;1.8.13
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-netflix-core depends on com.google.protobuf#protobuf-java;3.4.0, doesn’t match com.google.protobuf#protobuf-java;2.6.1
Sort done for : org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE / Number of dependencies = 2
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE / Number of dependencies = 8
Sort dependencies of : org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE / Number of dependencies = 5
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Module descriptor is processed : org.springframework.security#spring-security-rsa;1.0.3.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE
Module descriptor is processed : com.netflix.archaius#archaius-core;0.7.4
Module descriptor is processed : commons-configuration#commons-configuration;1.8
Module descriptor is processed : com.fasterxml.jackson.core#jackson-annotations;2.8.0
Module descriptor is processed : com.fasterxml.jackson.core#jackson-core;2.8.11
Module descriptor is processed : com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : com.google.guava#guava;18.0
Sort done for : org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE
Module descriptor is processed : com.netflix.ribbon#ribbon;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-core;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-httpclient;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-loadbalancer;2.2.5
Module descriptor is processed : org.springframework.retry#spring-retry;1.2.2.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-consul-discovery depends on joda-time#joda-time;2.7, doesn’t match joda-time#joda-time;2.9.9
Sort dependencies of : joda-time#joda-time;2.7 / Number of dependencies = 2
Non matching revision detected when sorting. joda-time#joda-time depends on junit#junit;3.8.2, doesn’t match junit#junit;4.12
Sort done for : joda-time#joda-time;2.7
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE / Number of dependencies = 2
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE / Number of dependencies = 8
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE
Module descriptor is processed : com.netflix.ribbon#ribbon;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-core;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-httpclient;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-loadbalancer;2.2.5
Module descriptor is processed : io.reactivex#rxjava;1.2.0
Sort done for : org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-starter-consul-discovery depends on joda-time#joda-time;2.7, doesn’t match joda-time#joda-time;2.9.9
Module descriptor is processed : joda-time#joda-time;2.7
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE
Module descriptor is processed : org.hibernate#hibernate-validator;5.3.6.Final
Module descriptor is processed : org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-vault-config-consul depends on org.assertj#assertj-core;2.8.0, doesn’t match org.assertj#assertj-core;2.6.0
Sort done for : org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE / Number of dependencies = 17
Module descriptor is processed : org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE
Module descriptor is processed : org.apache.httpcomponents#httpclient;4.5.5
Module descriptor is processed : org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE
Module descriptor is processed : org.hibernate#hibernate-validator;5.3.6.Final
Module descriptor is processed : org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-vault-config-databases depends on org.assertj#assertj-core;2.8.0, doesn’t match org.assertj#assertj-core;2.6.0
Sort done for : org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE / Number of dependencies = 10
Module descriptor is processed : org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE
Module descriptor is processed : org.hibernate#hibernate-validator;5.3.6.Final
Module descriptor is processed : org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-vault-config-aws depends on org.assertj#assertj-core;2.8.0, doesn’t match org.assertj#assertj-core;2.6.0
Sort done for : org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE / Number of dependencies = 27
Sort dependencies of : org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE / Number of dependencies = 32
Sort dependencies of : org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE / Number of dependencies = 10
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-contract-spec depends on org.codehaus.groovy#groovy;2.4.15, doesn’t match org.codehaus.groovy#groovy;2.5.0
Module descriptor is processed : org.codehaus.groovy#groovy;2.4.15
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-contract-spec depends on org.codehaus.groovy#groovy-nio;2.4.15, doesn’t match org.codehaus.groovy#groovy-nio;2.5.0
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-contract-spec depends on org.codehaus.groovy#groovy-json;2.4.15, doesn’t match org.codehaus.groovy#groovy-json;2.5.0
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-contract-spec depends on org.codehaus.groovy#groovy-xml;2.4.15, doesn’t match org.codehaus.groovy#groovy-xml;2.5.0
Sort dependencies of : dk.brics.automaton#automaton;1.11-8 / Number of dependencies = 0
Sort done for : dk.brics.automaton#automaton;1.11-8
Sort dependencies of : org.apache.commons#commons-text;1.1 / Number of dependencies = 3
Sort dependencies of : org.apache.commons#commons-lang3;3.5 / Number of dependencies = 4
Module descriptor is processed : junit#junit;4.12
Non matching revision detected when sorting. org.apache.commons#commons-lang3 depends on commons-io#commons-io;2.5, doesn’t match commons-io#commons-io;2.1
Sort done for : org.apache.commons#commons-lang3;3.5
Module descriptor is processed : junit#junit;4.12
Sort done for : org.apache.commons#commons-text;1.1
Module descriptor is processed : org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : org.springframework#spring-messaging;4.3.18.RELEASE
Module descriptor is processed : org.springframework.amqp#spring-rabbit;1.7.8.RELEASE
Module descriptor is processed : javax.inject#javax.inject;1
Module descriptor is processed : org.slf4j#slf4j-api;1.7.25
Sort dependencies of : com.github.tomakehurst#wiremock-standalone;2.16.0 / Number of dependencies = 0
Sort done for : com.github.tomakehurst#wiremock-standalone;2.16.0
Sort dependencies of : com.toomuchcoding.jsonassert#jsonassert;0.4.12 / Number of dependencies = 6
Module descriptor is processed : com.jayway.jsonpath#json-path;2.2.0
Module descriptor is processed : org.objenesis#objenesis;2.1
Non matching revision detected when sorting. com.toomuchcoding.jsonassert#jsonassert depends on ch.qos.logback#logback-classic;1.1.2, doesn’t match ch.qos.logback#logback-classic;1.1.11
Sort done for : com.toomuchcoding.jsonassert#jsonassert;0.4.12
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-contract-verifier depends on org.codehaus.groovy#groovy;2.4.15, doesn’t match org.codehaus.groovy#groovy;2.5.0
Module descriptor is processed : org.codehaus.groovy#groovy;2.4.15
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-contract-verifier depends on org.codehaus.groovy#groovy-nio;2.4.15, doesn’t match org.codehaus.groovy#groovy-nio;2.5.0
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-contract-verifier depends on org.codehaus.groovy#groovy-json;2.4.15, doesn’t match org.codehaus.groovy#groovy-json;2.5.0
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-contract-verifier depends on org.codehaus.groovy#groovy-xml;2.4.15, doesn’t match org.codehaus.groovy#groovy-xml;2.5.0
Module descriptor is processed : org.skyscreamer#jsonassert;1.4.0
Sort dependencies of : com.github.jknack#handlebars;4.0.6 / Number of dependencies = 12
Non matching revision detected when sorting. com.github.jknack#handlebars depends on org.apache.commons#commons-lang3;3.1, doesn’t match org.apache.commons#commons-lang3;3.5
Sort dependencies of : org.antlr#antlr4-runtime;4.5.1-1 / Number of dependencies = 0
Sort done for : org.antlr#antlr4-runtime;4.5.1-1
Sort dependencies of : org.mozilla#rhino;1.7R4 / Number of dependencies = 0
Sort done for : org.mozilla#rhino;1.7R4
Non matching revision detected when sorting. com.github.jknack#handlebars depends on org.slf4j#slf4j-api;1.6.4, doesn’t match org.slf4j#slf4j-api;1.7.25
Non matching revision detected when sorting. com.github.jknack#handlebars depends on ch.qos.logback#logback-classic;1.0.3, doesn’t match ch.qos.logback#logback-classic;1.1.11
Non matching revision detected when sorting. com.github.jknack#handlebars depends on junit#junit;4.11, doesn’t match junit#junit;4.12
Non matching revision detected when sorting. com.github.jknack#handlebars depends on org.yaml#snakeyaml;1.10, doesn’t match org.yaml#snakeyaml;1.17
Sort done for : com.github.jknack#handlebars;4.0.6
Sort dependencies of : commons-beanutils#commons-beanutils;1.9.3 / Number of dependencies = 4
Module descriptor is processed : commons-logging#commons-logging;1.2
Module descriptor is processed : commons-collections#commons-collections;3.2.2
Module descriptor is processed : junit#junit;4.12
Sort done for : commons-beanutils#commons-beanutils;1.9.3
Module descriptor is processed : org.yaml#snakeyaml;1.17
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE / Number of dependencies = 10
Sort done for : org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : com.sun.jersey#jersey-client;1.19.1
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE / Number of dependencies = 9
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE / Number of dependencies = 2
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE / Number of dependencies = 14
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Sort dependencies of : org.apache.curator#curator-framework;2.11.1 / Number of dependencies = 4
Sort dependencies of : org.apache.curator#curator-client;2.11.1 / Number of dependencies = 7
Sort dependencies of : org.apache.zookeeper#zookeeper;3.4.8 / Number of dependencies = 17
Non matching revision detected when sorting. org.apache.zookeeper#zookeeper depends on org.slf4j#slf4j-api;1.6.1, doesn’t match org.slf4j#slf4j-api;1.7.25
Sort dependencies of : jline#jline;0.9.94 / Number of dependencies = 1
Non matching revision detected when sorting. jline#jline depends on junit#junit;3.8.1, doesn’t match junit#junit;4.12
Sort done for : jline#jline;0.9.94
Non matching revision detected when sorting. org.apache.zookeeper#zookeeper depends on junit#junit;4.8.1, doesn’t match junit#junit;4.12
Module descriptor is processed : commons-collections#commons-collections;3.2.2
Non matching revision detected when sorting. org.apache.zookeeper#zookeeper depends on commons-lang#commons-lang;2.4, doesn’t match commons-lang#commons-lang;2.6
Module descriptor is processed : commons-collections#commons-collections;3.2.2
Sort done for : org.apache.zookeeper#zookeeper;3.4.8
Non matching revision detected when sorting. org.apache.curator#curator-client depends on com.google.guava#guava;16.0.1, doesn’t match com.google.guava#guava;18.0
Non matching revision detected when sorting. org.apache.curator#curator-client depends on org.slf4j#slf4j-api;1.7.6, doesn’t match org.slf4j#slf4j-api;1.7.25
Non matching revision detected when sorting. org.apache.curator#curator-client depends on org.mockito#mockito-core;1.9.5, doesn’t match org.mockito#mockito-core;1.10.19
Sort done for : org.apache.curator#curator-client;2.11.1
Sort done for : org.apache.curator#curator-framework;2.11.1
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Module descriptor is processed : org.objenesis#objenesis;2.1
Module descriptor is processed : org.hamcrest#hamcrest-core;1.3
Sort done for : org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE / Number of dependencies = 26
Module descriptor is processed : org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Module descriptor is processed : org.springframework#spring-web;4.3.18.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Sort dependencies of : org.apache.curator#curator-x-discovery;2.11.1 / Number of dependencies = 5
Sort dependencies of : org.apache.curator#curator-recipes;2.11.1 / Number of dependencies = 5
Module descriptor is processed : org.apache.curator#curator-framework;2.11.1
Non matching revision detected when sorting. org.apache.curator#curator-recipes depends on org.mockito#mockito-core;1.9.5, doesn’t match org.mockito#mockito-core;1.10.19
Sort done for : org.apache.curator#curator-recipes;2.11.1
Module descriptor is processed : org.codehaus.jackson#jackson-mapper-asl;1.9.13
Sort done for : org.apache.curator#curator-x-discovery;2.11.1
Module descriptor is processed : org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE
Module descriptor is processed : com.netflix.ribbon#ribbon;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-core;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-loadbalancer;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-httpclient;2.2.5
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Module descriptor is processed : org.objenesis#objenesis;2.1
Module descriptor is processed : org.hamcrest#hamcrest-core;1.3
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-zookeeper-discovery depends on org.assertj#assertj-core;2.4.0, doesn’t match org.assertj#assertj-core;2.6.0
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-zookeeper-discovery depends on com.toomuchcoding.jsonassert#jsonassert;0.4.1, doesn’t match com.toomuchcoding.jsonassert#jsonassert;0.4.12
Sort done for : org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE
Module descriptor is processed : org.apache.curator#curator-x-discovery;2.11.1
Module descriptor is processed : org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE
Module descriptor is processed : com.netflix.ribbon#ribbon;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-core;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-httpclient;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-loadbalancer;2.2.5
Sort done for : org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE / Number of dependencies = 8
Module descriptor is processed : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Sort dependencies of : org.cloudfoundry#cloudfoundry-client-lib;1.1.3 / Number of dependencies = 19
Non matching revision detected when sorting. org.cloudfoundry#cloudfoundry-client-lib depends on org.springframework#spring-webmvc;4.0.5.RELEASE, doesn’t match org.springframework#spring-webmvc;4.3.18.RELEASE
Non matching revision detected when sorting. org.cloudfoundry#cloudfoundry-client-lib depends on org.springframework.security.oauth#spring-security-oauth2;2.0.4.RELEASE, doesn’t match org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE
Non matching revision detected when sorting. org.cloudfoundry#cloudfoundry-client-lib depends on org.apache.httpcomponents#httpclient;4.3.6, doesn’t match org.apache.httpcomponents#httpclient;4.5.5
Sort dependencies of : commons-io#commons-io;2.1 / Number of dependencies = 1
Non matching revision detected when sorting. commons-io#commons-io depends on junit#junit;4.10, doesn’t match junit#junit;4.12
Sort done for : commons-io#commons-io;2.1
Sort dependencies of : com.esotericsoftware.yamlbeans#yamlbeans;1.06 / Number of dependencies = 1
Non matching revision detected when sorting. com.esotericsoftware.yamlbeans#yamlbeans depends on junit#junit;4.8.2, doesn’t match junit#junit;4.12
Sort done for : com.esotericsoftware.yamlbeans#yamlbeans;1.06
Non matching revision detected when sorting. org.cloudfoundry#cloudfoundry-client-lib depends on com.fasterxml.jackson.core#jackson-core;2.3.3, doesn’t match com.fasterxml.jackson.core#jackson-core;2.8.11
Non matching revision detected when sorting. org.cloudfoundry#cloudfoundry-client-lib depends on com.fasterxml.jackson.core#jackson-databind;2.3.3, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Non matching revision detected when sorting. org.cloudfoundry#cloudfoundry-client-lib depends on org.apache.tomcat.embed#tomcat-embed-websocket;8.0.15, doesn’t match org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31
Sort dependencies of : org.apache.tomcat#tomcat-juli;8.0.15 / Number of dependencies = 0
Sort done for : org.apache.tomcat#tomcat-juli;8.0.15
Module descriptor is processed : com.google.protobuf#protobuf-java;2.6.1
Non matching revision detected when sorting. org.cloudfoundry#cloudfoundry-client-lib depends on junit#junit;4.10, doesn’t match junit#junit;4.12
Non matching revision detected when sorting. org.cloudfoundry#cloudfoundry-client-lib depends on org.mockito#mockito-core;1.9.5, doesn’t match org.mockito#mockito-core;1.10.19
Non matching revision detected when sorting. org.cloudfoundry#cloudfoundry-client-lib depends on org.springframework#spring-test;4.0.5.RELEASE, doesn’t match org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.cloudfoundry#cloudfoundry-client-lib;1.1.3
Module descriptor is processed : org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE / Number of dependencies = 3
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE
Sort dependencies of : org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE / Number of dependencies = 10
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE / Number of dependencies = 1
Module descriptor is processed : org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE / Number of dependencies = 1
Module descriptor is processed : org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE / Number of dependencies = 2
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-localconfig-connector depends on org.apache.commons#commons-lang3;3.3.2, doesn’t match org.apache.commons#commons-lang3;3.5
Module descriptor is processed : org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE / Number of dependencies = 3
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE / Number of dependencies = 31
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Module descriptor is processed : org.springframework.integration#spring-integration-core;4.3.17.RELEASE
Module descriptor is processed : org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : com.netflix.hystrix#hystrix-core;1.5.12
Module descriptor is processed : io.reactivex#rxjava;1.2.0
Module descriptor is processed : org.apache.httpcomponents#httpclient;4.5.5
Module descriptor is processed : org.aspectj#aspectjrt;1.8.13
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Module descriptor is processed : com.netflix.archaius#archaius-core;0.7.4
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-sleuth-core depends on org.assertj#assertj-core;3.8.0, doesn’t match org.assertj#assertj-core;2.6.0
Sort done for : org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE / Number of dependencies = 2
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE / Number of dependencies = 4
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE / Number of dependencies = 8
Module descriptor is processed : org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Module descriptor is processed : org.apache.curator#curator-recipes;2.11.1
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
Module descriptor is processed : org.apache.curator#curator-recipes;2.11.1
Sort done for : org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE / Number of dependencies = 4
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE / Number of dependencies = 4
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE / Number of dependencies = 10
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE / Number of dependencies = 12
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream depends on org.springframework.boot#spring-boot-starter-actuator;1.5.12.RELEASE, doesn’t match org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream depends on org.springframework.boot#spring-boot-starter-web;1.5.12.RELEASE, doesn’t match org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream depends on org.springframework.boot#spring-boot-starter-validation;1.5.12.RELEASE, doesn’t match org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream depends on org.springframework#spring-messaging;4.3.16.RELEASE, doesn’t match org.springframework#spring-messaging;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream depends on org.springframework.integration#spring-integration-core;4.3.15.RELEASE, doesn’t match org.springframework.integration#spring-integration-core;4.3.17.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream depends on org.springframework.integration#spring-integration-jmx;4.3.15.RELEASE, doesn’t match org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE
Sort dependencies of : org.springframework#spring-tuple;1.0.0.RELEASE / Number of dependencies = 7
Module descriptor is processed : com.esotericsoftware#kryo-shaded;3.0.3
Non matching revision detected when sorting. org.springframework#spring-tuple depends on org.springframework#spring-core;4.2.6.RELEASE, doesn’t match org.springframework#spring-core;4.3.18.RELEASE
Non matching revision detected when sorting. org.springframework#spring-tuple depends on com.fasterxml.jackson.core#jackson-databind;2.6.6, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Non matching revision detected when sorting. org.springframework#spring-tuple depends on org.springframework#spring-context;4.2.6.RELEASE, doesn’t match org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : org.hamcrest#hamcrest-core;1.3
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : junit#junit;4.12
Sort done for : org.springframework#spring-tuple;1.0.0.RELEASE
Sort dependencies of : org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE / Number of dependencies = 5
Module descriptor is processed : org.springframework#spring-tuple;1.0.0.RELEASE
Non matching revision detected when sorting. org.springframework.integration#spring-integration-tuple depends on org.springframework.integration#spring-integration-core;4.2.5.RELEASE, doesn’t match org.springframework.integration#spring-integration-core;4.3.17.RELEASE
Module descriptor is processed : org.hamcrest#hamcrest-core;1.3
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : junit#junit;4.12
Sort done for : org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE
Module descriptor is processed : org.springframework.retry#spring-retry;1.2.2.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream depends on org.springframework.boot#spring-boot-starter-test;1.5.12.RELEASE, doesn’t match org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE
Module descriptor is processed : com.ecwid.consul#consul-api;1.3.0
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE / Number of dependencies = 9
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE
Module descriptor is processed : org.springframework.integration#spring-integration-core;4.3.17.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE / Number of dependencies = 4
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE / Number of dependencies = 13
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Module descriptor is processed : org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE / Number of dependencies = 8
Sort dependencies of : org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE / Number of dependencies = 18
Sort dependencies of : org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE / Number of dependencies = 14
Module descriptor is processed : org.springframework#spring-beans;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-aop;4.3.18.RELEASE
Sort dependencies of : com.amazonaws#aws-java-sdk-core;1.11.125 / Number of dependencies = 15
Non matching revision detected when sorting. com.amazonaws#aws-java-sdk-core depends on commons-logging#commons-logging;1.1.3, doesn’t match commons-logging#commons-logging;1.2
Non matching revision detected when sorting. com.amazonaws#aws-java-sdk-core depends on org.apache.httpcomponents#httpclient;4.5.2, doesn’t match org.apache.httpcomponents#httpclient;4.5.5
Sort dependencies of : software.amazon.ion#ion-java;1.0.2 / Number of dependencies = 1
Module descriptor is processed : junit#junit;4.12
Sort done for : software.amazon.ion#ion-java;1.0.2
Non matching revision detected when sorting. com.amazonaws#aws-java-sdk-core depends on com.fasterxml.jackson.core#jackson-databind;2.6.6, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Non matching revision detected when sorting. com.amazonaws#aws-java-sdk-core depends on com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.6.6, doesn’t match com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11
Non matching revision detected when sorting. com.amazonaws#aws-java-sdk-core depends on joda-time#joda-time;2.8.1, doesn’t match joda-time#joda-time;2.9.9
Non matching revision detected when sorting. com.amazonaws#aws-java-sdk-core depends on joda-time#joda-time;2.8.1, doesn’t match joda-time#joda-time;2.7
Module descriptor is processed : junit#junit;4.12
Non matching revision detected when sorting. com.amazonaws#aws-java-sdk-core depends on commons-io#commons-io;2.4, doesn’t match commons-io#commons-io;2.1
Sort done for : com.amazonaws#aws-java-sdk-core;1.11.125
Sort dependencies of : com.amazonaws#aws-java-sdk-s3;1.11.125 / Number of dependencies = 4
Sort dependencies of : com.amazonaws#aws-java-sdk-kms;1.11.125 / Number of dependencies = 3
Module descriptor is processed : com.amazonaws#aws-java-sdk-core;1.11.125
Sort dependencies of : com.amazonaws#jmespath-java;1.11.125 / Number of dependencies = 2
Non matching revision detected when sorting. com.amazonaws#jmespath-java depends on com.fasterxml.jackson.core#jackson-databind;2.6.6, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : junit#junit;4.12
Sort done for : com.amazonaws#jmespath-java;1.11.125
Sort done for : com.amazonaws#aws-java-sdk-kms;1.11.125
Module descriptor is processed : com.amazonaws#aws-java-sdk-core;1.11.125
Module descriptor is processed : com.amazonaws#jmespath-java;1.11.125
Sort done for : com.amazonaws#aws-java-sdk-s3;1.11.125
Sort dependencies of : com.amazonaws#aws-java-sdk-ec2;1.11.125 / Number of dependencies = 3
Module descriptor is processed : com.amazonaws#aws-java-sdk-core;1.11.125
Module descriptor is processed : com.amazonaws#jmespath-java;1.11.125
Sort done for : com.amazonaws#aws-java-sdk-ec2;1.11.125
Sort dependencies of : com.amazonaws#aws-java-sdk-cloudformation;1.11.125 / Number of dependencies = 3
Module descriptor is processed : com.amazonaws#aws-java-sdk-core;1.11.125
Module descriptor is processed : com.amazonaws#jmespath-java;1.11.125
Sort done for : com.amazonaws#aws-java-sdk-cloudformation;1.11.125
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-context-support;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Module descriptor is processed : org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE / Number of dependencies = 21
Module descriptor is processed : org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : org.springframework#spring-context-support;4.3.18.RELEASE
Module descriptor is processed : org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE
Module descriptor is processed : org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE / Number of dependencies = 10
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE / Number of dependencies = 23
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-netflix-eureka-client depends on org.springframework.cloud#spring-cloud-config-client;1.4.4.BUILD-SNAPSHOT, doesn’t match org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-netflix-eureka-client depends on org.springframework.cloud#spring-cloud-config-server;1.4.4.BUILD-SNAPSHOT, doesn’t match org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE
Sort dependencies of : com.netflix.eureka#eureka-client;1.7.2 / Number of dependencies = 22
Sort dependencies of : org.codehaus.jettison#jettison;1.3.7 / Number of dependencies = 3
Non matching revision detected when sorting. org.codehaus.jettison#jettison depends on junit#junit;3.8.1, doesn’t match junit#junit;4.12
Module descriptor is processed : stax#stax-api;1.0.1
Sort done for : org.codehaus.jettison#jettison;1.3.7
Sort dependencies of : com.netflix.netflix-commons#netflix-eventbus;0.3.0 / Number of dependencies = 5
Non matching revision detected when sorting. com.netflix.netflix-commons#netflix-eventbus depends on org.slf4j#slf4j-api;1.6.4, doesn’t match org.slf4j#slf4j-api;1.7.25
Sort dependencies of : com.netflix.netflix-commons#netflix-infix;0.3.0 / Number of dependencies = 8
Non matching revision detected when sorting. com.netflix.netflix-commons#netflix-infix depends on org.slf4j#slf4j-api;1.6.4, doesn’t match org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : commons-jxpath#commons-jxpath;1.3
Non matching revision detected when sorting. com.netflix.netflix-commons#netflix-infix depends on joda-time#joda-time;2.3, doesn’t match joda-time#joda-time;2.9.9
Non matching revision detected when sorting. com.netflix.netflix-commons#netflix-infix depends on joda-time#joda-time;2.3, doesn’t match joda-time#joda-time;2.7
Sort dependencies of : org.antlr#antlr-runtime;3.4 / Number of dependencies = 2
Sort dependencies of : org.antlr#stringtemplate;3.2.1 / Number of dependencies = 2
Non matching revision detected when sorting. org.antlr#stringtemplate depends on junit#junit;4.5, doesn’t match junit#junit;4.12
Sort dependencies of : antlr#antlr;2.7.7 / Number of dependencies = 0
Sort done for : antlr#antlr;2.7.7
Sort done for : org.antlr#stringtemplate;3.2.1
Module descriptor is processed : antlr#antlr;2.7.7
Sort done for : org.antlr#antlr-runtime;3.4
Module descriptor is processed : com.google.code.findbugs#jsr305;3.0.1
Non matching revision detected when sorting. com.netflix.netflix-commons#netflix-infix depends on com.google.guava#guava;14.0.1, doesn’t match com.google.guava#guava;18.0
Non matching revision detected when sorting. com.netflix.netflix-commons#netflix-infix depends on com.google.code.gson#gson;2.1, doesn’t match com.google.code.gson#gson;2.8.5
Non matching revision detected when sorting. com.netflix.netflix-commons#netflix-infix depends on com.google.code.gson#gson;2.1, doesn’t match com.google.code.gson#gson;2.3.1
Sort done for : com.netflix.netflix-commons#netflix-infix;0.3.0
Non matching revision detected when sorting. com.netflix.netflix-commons#netflix-eventbus depends on com.netflix.servo#servo-core;0.5.3, doesn’t match com.netflix.servo#servo-core;0.10.1
Non matching revision detected when sorting. com.netflix.netflix-commons#netflix-eventbus depends on com.netflix.archaius#archaius-core;0.3.3, doesn’t match com.netflix.archaius#archaius-core;0.7.4
Sort dependencies of : org.apache.commons#commons-math;2.2 / Number of dependencies = 1
Non matching revision detected when sorting. org.apache.commons#commons-math depends on junit#junit;4.4, doesn’t match junit#junit;4.12
Sort done for : org.apache.commons#commons-math;2.2
Sort done for : com.netflix.netflix-commons#netflix-eventbus;0.3.0
Non matching revision detected when sorting. com.netflix.eureka#eureka-client depends on com.thoughtworks.xstream#xstream;1.4.9, doesn’t match com.thoughtworks.xstream#xstream;1.4.10
Non matching revision detected when sorting. com.netflix.eureka#eureka-client depends on com.netflix.archaius#archaius-core;0.7.5, doesn’t match com.netflix.archaius#archaius-core;0.7.4
Module descriptor is processed : javax.ws.rs#jsr311-api;1.1.1
Module descriptor is processed : com.netflix.servo#servo-core;0.10.1
Sort dependencies of : com.sun.jersey#jersey-core;1.19.1 / Number of dependencies = 5
Module descriptor is processed : javax.ws.rs#jsr311-api;1.1.1
Non matching revision detected when sorting. com.sun.jersey#jersey-core depends on junit#junit;4.8.2, doesn’t match junit#junit;4.12
Sort done for : com.sun.jersey#jersey-core;1.19.1
Module descriptor is processed : com.sun.jersey#jersey-client;1.19.1
Module descriptor is processed : com.sun.jersey.contribs#jersey-apache-client4;1.19.1
Non matching revision detected when sorting. com.netflix.eureka#eureka-client depends on org.apache.httpcomponents#httpclient;4.3.4, doesn’t match org.apache.httpcomponents#httpclient;4.5.5
Sort dependencies of : com.google.inject#guice;4.1.0 / Number of dependencies = 11
Module descriptor is processed : javax.inject#javax.inject;1
Module descriptor is processed : aopalliance#aopalliance;1.0
Non matching revision detected when sorting. com.google.inject#guice depends on com.google.guava#guava;19.0, doesn’t match com.google.guava#guava;18.0
Module descriptor is processed : org.ow2.asm#asm;5.0.3
Non matching revision detected when sorting. com.google.inject#guice depends on org.springframework#spring-beans;3.0.5.RELEASE, doesn’t match org.springframework#spring-beans;4.3.18.RELEASE
Non matching revision detected when sorting. com.google.inject#guice depends on junit#junit;4.11, doesn’t match junit#junit;4.12
Sort done for : com.google.inject#guice;4.1.0
Non matching revision detected when sorting. com.netflix.eureka#eureka-client depends on com.fasterxml.jackson.core#jackson-annotations;2.8.7, doesn’t match com.fasterxml.jackson.core#jackson-annotations;2.8.0
Non matching revision detected when sorting. com.netflix.eureka#eureka-client depends on com.fasterxml.jackson.core#jackson-core;2.8.7, doesn’t match com.fasterxml.jackson.core#jackson-core;2.8.11
Non matching revision detected when sorting. com.netflix.eureka#eureka-client depends on com.fasterxml.jackson.core#jackson-databind;2.8.7, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Non matching revision detected when sorting. com.netflix.eureka#eureka-client depends on com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7, doesn’t match com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11
Sort dependencies of : org.codehaus.woodstox#woodstox-core-asl;4.4.1 / Number of dependencies = 2
Module descriptor is processed : javax.xml.stream#stax-api;1.0-2
Module descriptor is processed : org.codehaus.woodstox#stax2-api;3.1.4
Sort done for : org.codehaus.woodstox#woodstox-core-asl;4.4.1
Non matching revision detected when sorting. com.netflix.eureka#eureka-client depends on junit#junit;4.11, doesn’t match junit#junit;4.12
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Sort done for : com.netflix.eureka#eureka-client;1.7.2
Module descriptor is processed : javax.inject#javax.inject;1
Sort dependencies of : com.netflix.eureka#eureka-core;1.7.2 / Number of dependencies = 11
Module descriptor is processed : com.netflix.eureka#eureka-client;1.7.2
Non matching revision detected when sorting. com.netflix.eureka#eureka-core depends on com.amazonaws#aws-java-sdk-core;1.11.105, doesn’t match com.amazonaws#aws-java-sdk-core;1.11.125
Non matching revision detected when sorting. com.netflix.eureka#eureka-core depends on com.amazonaws#aws-java-sdk-ec2;1.11.105, doesn’t match com.amazonaws#aws-java-sdk-ec2;1.11.125
Non matching revision detected when sorting. com.netflix.eureka#eureka-core depends on com.thoughtworks.xstream#xstream;1.4.9, doesn’t match com.thoughtworks.xstream#xstream;1.4.10
Module descriptor is processed : javax.ws.rs#jsr311-api;1.1.1
Non matching revision detected when sorting. com.netflix.eureka#eureka-core depends on com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.7, doesn’t match com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11
Module descriptor is processed : org.codehaus.woodstox#woodstox-core-asl;4.4.1
Sort done for : com.netflix.eureka#eureka-core;1.7.2
Module descriptor is processed : com.thoughtworks.xstream#xstream;1.4.10
Module descriptor is processed : com.sun.jersey.contribs#jersey-apache-client4;1.19.1
Module descriptor is processed : com.netflix.archaius#archaius-core;0.7.4
Module descriptor is processed : commons-configuration#commons-configuration;1.8
Module descriptor is processed : com.netflix.ribbon#ribbon;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-core;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-loadbalancer;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-eureka;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-httpclient;2.2.5
Module descriptor is processed : org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Module descriptor is processed : org.springframework.retry#spring-retry;1.2.2.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE
Module descriptor is processed : com.netflix.eureka#eureka-client;1.7.2
Module descriptor is processed : com.netflix.eureka#eureka-core;1.7.2
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE
Module descriptor is processed : com.netflix.ribbon#ribbon-eureka;2.2.5
Module descriptor is processed : com.thoughtworks.xstream#xstream;1.4.10
Sort done for : org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE / Number of dependencies = 5
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE / Number of dependencies = 22
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Sort dependencies of : org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE / Number of dependencies = 9
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.freemarker#freemarker;2.3.28
Module descriptor is processed : org.springframework#spring-context-support;4.3.18.RELEASE
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE
Module descriptor is processed : com.netflix.eureka#eureka-client;1.7.2
Sort dependencies of : com.sun.jersey#jersey-servlet;1.19.1 / Number of dependencies = 9
Non matching revision detected when sorting. com.sun.jersey#jersey-servlet depends on junit#junit;4.8.2, doesn’t match junit#junit;4.12
Sort done for : com.sun.jersey#jersey-servlet;1.19.1
Sort dependencies of : com.sun.jersey#jersey-server;1.19.1 / Number of dependencies = 6
Non matching revision detected when sorting. com.sun.jersey#jersey-server depends on junit#junit;4.8.2, doesn’t match junit#junit;4.12
Sort done for : com.sun.jersey#jersey-server;1.19.1
Module descriptor is processed : com.netflix.eureka#eureka-core;1.7.2
Module descriptor is processed : com.netflix.archaius#archaius-core;0.7.4
Module descriptor is processed : commons-configuration#commons-configuration;1.8
Module descriptor is processed : javax.inject#javax.inject;1
Module descriptor is processed : com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11
Module descriptor is processed : com.thoughtworks.xstream#xstream;1.4.10
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE
Module descriptor is processed : com.netflix.ribbon#ribbon-eureka;2.2.5
Sort done for : org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE / Number of dependencies = 4
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE
Module descriptor is processed : com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Sort done for : org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE / Number of dependencies = 2
Sort dependencies of : org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE / Number of dependencies = 1
Sort dependencies of : org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE / Number of dependencies = 12
Sort dependencies of : org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE / Number of dependencies = 3
Module descriptor is processed : org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream-binder-rabbit-core depends on org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE, doesn’t match org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream-binder-rabbit-core depends on org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE, doesn’t match org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE
Sort dependencies of : org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE / Number of dependencies = 5
Module descriptor is processed : com.esotericsoftware#kryo-shaded;3.0.3
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream-codec depends on org.springframework.integration#spring-integration-core;4.3.15.RELEASE, doesn’t match org.springframework.integration#spring-integration-core;4.3.17.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream-codec depends on org.springframework.boot#spring-boot-starter-logging;1.5.12.RELEASE, doesn’t match org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream-codec depends on org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE, doesn’t match org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : com.fasterxml.jackson.core#jackson-annotations;2.8.0
Sort done for : org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream-binder-rabbit depends on org.springframework.boot#spring-boot-autoconfigure;1.5.12.RELEASE, doesn’t match org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream-binder-rabbit depends on org.springframework.cloud#spring-cloud-core;1.2.5.RELEASE, doesn’t match org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream-binder-rabbit depends on org.springframework.cloud#spring-cloud-spring-service-connector;1.2.5.RELEASE, doesn’t match org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream-binder-rabbit depends on org.springframework.boot#spring-boot-starter-amqp;1.5.12.RELEASE, doesn’t match org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE
Non matching revision detected when sorting. org.springframework.cloud#spring-cloud-stream-binder-rabbit depends on org.springframework.integration#spring-integration-amqp;4.3.15.RELEASE, doesn’t match org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE
Sort done for : org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE
Sort dependencies of : org.codehaus.groovy#groovy-xml;2.5.0 / Number of dependencies = 1
Sort dependencies of : org.codehaus.groovy#groovy;2.5.0 / Number of dependencies = 6
Module descriptor is processed : com.thoughtworks.xstream#xstream;1.4.10
Sort done for : org.codehaus.groovy#groovy;2.5.0
Sort done for : org.codehaus.groovy#groovy-xml;2.5.0
Sort dependencies of : org.codehaus.groovy#groovy-nio;2.5.0 / Number of dependencies = 1
Module descriptor is processed : org.codehaus.groovy#groovy;2.5.0
Sort done for : org.codehaus.groovy#groovy-nio;2.5.0
Sort dependencies of : org.codehaus.groovy#groovy-json;2.5.0 / Number of dependencies = 1
Module descriptor is processed : org.codehaus.groovy#groovy;2.5.0
Sort done for : org.codehaus.groovy#groovy-json;2.5.0
Module descriptor is processed : org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE
Module descriptor is processed : org.hibernate#hibernate-validator;5.3.6.Final
Module descriptor is processed : com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : org.springframework#spring-web;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-webmvc;4.3.18.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE
Module descriptor is processed : org.springframework#spring-core;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-context;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-aop;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-beans;4.3.18.RELEASE
Module descriptor is processed : org.springframework#spring-expression;4.3.18.RELEASE
Module descriptor is processed : ch.qos.logback#logback-classic;1.1.11
Module descriptor is processed : org.slf4j#jcl-over-slf4j;1.7.25
Module descriptor is processed : org.slf4j#jul-to-slf4j;1.7.25
Module descriptor is processed : org.slf4j#log4j-over-slf4j;1.7.25
Module descriptor is processed : ch.qos.logback#logback-core;1.1.11
Module descriptor is processed : org.slf4j#slf4j-api;1.7.25
Module descriptor is processed : org.apache.tomcat.embed#tomcat-embed-core;8.5.31
Module descriptor is processed : org.apache.tomcat.embed#tomcat-embed-el;8.5.31
Module descriptor is processed : org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31
Module descriptor is processed : org.apache.tomcat#tomcat-annotations-api;8.5.31
Module descriptor is processed : javax.validation#validation-api;1.1.0.Final
Sort dependencies of : org.jboss.logging#jboss-logging;3.3.2.Final / Number of dependencies = 4
Non matching revision detected when sorting. org.jboss.logging#jboss-logging depends on org.slf4j#slf4j-api;1.7.2, doesn’t match org.slf4j#slf4j-api;1.7.25
Sort done for : org.jboss.logging#jboss-logging;3.3.2.Final
Sort dependencies of : com.fasterxml#classmate;1.3.4 / Number of dependencies = 1
Module descriptor is processed : junit#junit;4.12
Sort done for : com.fasterxml#classmate;1.3.4
Module descriptor is processed : com.fasterxml.jackson.core#jackson-annotations;2.8.0
Module descriptor is processed : com.fasterxml.jackson.core#jackson-core;2.8.11
Module descriptor is processed : org.yaml#snakeyaml;1.17
Module descriptor is processed : commons-logging#commons-logging;1.2
Module descriptor is processed : org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE
Module descriptor is processed : org.springframework.vault#spring-vault-core;1.1.2.RELEASE
Module descriptor is processed : org.springframework.security#spring-security-crypto;4.2.7.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE
Module descriptor is processed : javax.inject#javax.inject;1
Module descriptor is processed : com.github.tomakehurst#wiremock-standalone;2.16.0
Module descriptor is processed : com.toomuchcoding.jsonassert#jsonassert;0.4.12
Module descriptor is processed : org.codehaus.groovy#groovy;2.4.15
Module descriptor is processed : org.skyscreamer#jsonassert;1.4.0
Module descriptor is processed : com.github.jknack#handlebars;4.0.6
Module descriptor is processed : commons-beanutils#commons-beanutils;1.9.3
Module descriptor is processed : org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE
Module descriptor is processed : dk.brics.automaton#automaton;1.11-8
Module descriptor is processed : org.apache.commons#commons-text;1.1
Module descriptor is processed : org.apache.commons#commons-lang3;3.5
Module descriptor is processed : org.springframework.boot#spring-boot-test;1.5.14.RELEASE
Module descriptor is processed : com.jayway.jsonpath#json-path;2.2.0
Module descriptor is processed : net.minidev#json-smart;2.2.1
Module descriptor is processed : net.minidev#accessors-smart;1.1
Module descriptor is processed : org.ow2.asm#asm;5.0.3
Module descriptor is processed : com.vaadin.external.google#android-json;0.0.20131108.vaadin1
Module descriptor is processed : org.antlr#antlr4-runtime;4.5.1-1
Module descriptor is processed : org.mozilla#rhino;1.7R4
Module descriptor is processed : commons-collections#commons-collections;3.2.2
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-core;1.3
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Module descriptor is processed : org.objenesis#objenesis;2.1
Module descriptor is processed : org.cloudfoundry#cloudfoundry-client-lib;1.1.3
Module descriptor is processed : org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE
Module descriptor is processed : org.apache.httpcomponents#httpclient;4.5.5
Module descriptor is processed : commons-io#commons-io;2.1
Module descriptor is processed : com.esotericsoftware.yamlbeans#yamlbeans;1.06
Module descriptor is processed : org.apache.tomcat#tomcat-juli;8.0.15
Module descriptor is processed : com.google.protobuf#protobuf-java;2.6.1
Module descriptor is processed : org.springframework.security#spring-security-core;4.2.7.RELEASE
Module descriptor is processed : org.springframework.security#spring-security-config;4.2.7.RELEASE
Module descriptor is processed : org.springframework.security#spring-security-web;4.2.7.RELEASE
Module descriptor is processed : commons-codec#commons-codec;1.10
Module descriptor is processed : org.codehaus.jackson#jackson-mapper-asl;1.9.13
Module descriptor is processed : aopalliance#aopalliance;1.0
Module descriptor is processed : org.codehaus.jackson#jackson-core-asl;1.9.13
Module descriptor is processed : org.apache.httpcomponents#httpcore;4.4.9
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE
Module descriptor is processed : org.springframework.security#spring-security-rsa;1.0.3.RELEASE
Module descriptor is processed : org.bouncycastle#bcpkix-jdk15on;1.55
Module descriptor is processed : org.bouncycastle#bcprov-jdk15on;1.55
Module descriptor is processed : org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE
Module descriptor is processed : org.aspectj#aspectjweaver;1.8.13
Module descriptor is processed : org.aspectj#aspectjrt;1.8.13
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE
Module descriptor is processed : org.apache.curator#curator-recipes;2.11.1
Module descriptor is processed : org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE
Module descriptor is processed : org.apache.curator#curator-framework;2.11.1
Module descriptor is processed : org.apache.curator#curator-client;2.11.1
Module descriptor is processed : org.apache.zookeeper#zookeeper;3.4.8
Module descriptor is processed : com.google.guava#guava;18.0
Module descriptor is processed : jline#jline;0.9.94
Module descriptor is processed : org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE
Module descriptor is processed : org.apache.curator#curator-x-discovery;2.11.1
Module descriptor is processed : org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE
Module descriptor is processed : com.netflix.ribbon#ribbon;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-core;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-httpclient;2.2.5
Module descriptor is processed : com.netflix.ribbon#ribbon-loadbalancer;2.2.5
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE
Module descriptor is processed : com.netflix.archaius#archaius-core;0.7.4
Module descriptor is processed : commons-configuration#commons-configuration;1.8
Module descriptor is processed : commons-lang#commons-lang;2.6
Module descriptor is processed : com.google.code.findbugs#jsr305;3.0.1
Module descriptor is processed : com.netflix.ribbon#ribbon-transport;2.2.5
Module descriptor is processed : com.netflix.hystrix#hystrix-core;1.5.12
Module descriptor is processed : io.reactivex#rxjava;1.2.0
Module descriptor is processed : io.reactivex#rxnetty;0.4.9
Module descriptor is processed : com.google.code.findbugs#annotations;2.0.0
Module descriptor is processed : io.reactivex#rxnetty-contexts;0.4.9
Module descriptor is processed : io.reactivex#rxnetty-servo;0.4.9
Module descriptor is processed : com.netflix.netflix-commons#netflix-statistics;0.1.1
Module descriptor is processed : com.netflix.servo#servo-core;0.10.1
Module descriptor is processed : com.netflix.netflix-commons#netflix-commons-util;0.1.1
Module descriptor is processed : com.netflix.servo#servo-internal;0.10.1
Module descriptor is processed : io.netty#netty-codec-http;4.0.27.Final
Module descriptor is processed : io.netty#netty-transport-native-epoll;4.0.27.Final
Module descriptor is processed : io.netty#netty-codec;4.0.27.Final
Module descriptor is processed : io.netty#netty-handler;4.0.27.Final
Module descriptor is processed : io.netty#netty-transport;4.0.27.Final
Module descriptor is processed : io.netty#netty-buffer;4.0.27.Final
Module descriptor is processed : io.netty#netty-common;4.0.27.Final
Module descriptor is processed : org.hdrhistogram#HdrHistogram;2.1.9
Module descriptor is processed : com.sun.jersey#jersey-client;1.19.1
Module descriptor is processed : com.sun.jersey.contribs#jersey-apache-client4;1.19.1
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE
Module descriptor is processed : com.ecwid.consul#consul-api;1.3.0
Module descriptor is processed : com.google.code.gson#gson;2.3.1
Module descriptor is processed : org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE
Sort dependencies of : org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE / Number of dependencies = 8
Module descriptor is processed : org.springframework.boot#spring-boot-starter;1.5.14.RELEASE
Module descriptor is processed : org.apache.tomcat.embed#tomcat-embed-el;8.5.31
Module descriptor is processed : org.hibernate#hibernate-validator;5.3.6.Final
Module descriptor is processed : junit#junit;4.12
Module descriptor is processed : org.assertj#assertj-core;2.6.0
Module descriptor is processed : org.mockito#mockito-core;1.10.19
Module descriptor is processed : org.hamcrest#hamcrest-library;1.3
Module descriptor is processed : org.springframework#spring-test;4.3.18.RELEASE
Sort done for : org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE
Module descriptor is processed : org.springframework#spring-messaging;4.3.18.RELEASE
Module descriptor is processed : org.springframework.integration#spring-integration-core;4.3.17.RELEASE
Module descriptor is processed : org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE
Module descriptor is processed : org.springframework#spring-tuple;1.0.0.RELEASE
Module descriptor is processed : org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE
Module descriptor is processed : org.springframework.retry#spring-retry;1.2.2.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE
Module descriptor is processed : org.springframework#spring-tx;4.3.18.RELEASE
Module descriptor is processed : com.esotericsoftware#kryo-shaded;3.0.3
Module descriptor is processed : com.esotericsoftware#minlog;1.3.0
Module descriptor is processed : org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE
Module descriptor is processed : joda-time#joda-time;2.7
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE
Module descriptor is processed : com.amazonaws#aws-java-sdk-core;1.11.125
Module descriptor is processed : com.amazonaws#aws-java-sdk-s3;1.11.125
Module descriptor is processed : com.amazonaws#aws-java-sdk-ec2;1.11.125
Module descriptor is processed : com.amazonaws#aws-java-sdk-cloudformation;1.11.125
Module descriptor is processed : software.amazon.ion#ion-java;1.0.2
Sort dependencies of : com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11 / Number of dependencies = 4
Non matching revision detected when sorting. com.fasterxml.jackson.dataformat#jackson-dataformat-cbor depends on com.fasterxml.jackson.core#jackson-databind;2.8.11, doesn’t match com.fasterxml.jackson.core#jackson-databind;2.8.11.2
Module descriptor is processed : com.fasterxml.jackson.core#jackson-annotations;2.8.0
Module descriptor is processed : com.fasterxml.jackson.core#jackson-core;2.8.11
Module descriptor is processed : junit#junit;4.12
Sort done for : com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11
Module descriptor is processed : joda-time#joda-time;2.9.9
Module descriptor is processed : com.amazonaws#aws-java-sdk-kms;1.11.125
Module descriptor is processed : com.amazonaws#jmespath-java;1.11.125
Module descriptor is processed : org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE
Module descriptor is processed : com.netflix.eureka#eureka-client;1.7.2
Module descriptor is processed : com.netflix.eureka#eureka-core;1.7.2
Module descriptor is processed : com.netflix.ribbon#ribbon-eureka;2.2.5
Module descriptor is processed : com.thoughtworks.xstream#xstream;1.4.10
Module descriptor is processed : org.codehaus.jettison#jettison;1.3.7
Module descriptor is processed : com.netflix.netflix-commons#netflix-eventbus;0.3.0
Module descriptor is processed : javax.ws.rs#jsr311-api;1.1.1
Module descriptor is processed : com.sun.jersey#jersey-core;1.19.1
Module descriptor is processed : com.google.inject#guice;4.1.0
Module descriptor is processed : stax#stax-api;1.0.1
Module descriptor is processed : com.netflix.netflix-commons#netflix-infix;0.3.0
Module descriptor is processed : org.apache.commons#commons-math;2.2
Module descriptor is processed : commons-jxpath#commons-jxpath;1.3
Module descriptor is processed : org.antlr#antlr-runtime;3.4
Module descriptor is processed : com.google.code.gson#gson;2.8.5
Module descriptor is processed : org.antlr#stringtemplate;3.2.1
Module descriptor is processed : antlr#antlr;2.7.7
Module descriptor is processed : xmlpull#xmlpull;1.1.3.1
Module descriptor is processed : xpp3#xpp3_min;1.1.4c
Module descriptor is processed : org.codehaus.woodstox#woodstox-core-asl;4.4.1
Module descriptor is processed : javax.xml.stream#stax-api;1.0-2
Module descriptor is processed : org.codehaus.woodstox#stax2-api;3.1.4
Module descriptor is processed : org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE
Module descriptor is processed : com.sun.jersey#jersey-servlet;1.19.1
Module descriptor is processed : com.sun.jersey#jersey-server;1.19.1
Module descriptor is processed : com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11
Module descriptor is processed : org.freemarker#freemarker;2.3.28
Module descriptor is processed : org.springframework#spring-context-support;4.3.18.RELEASE
Module descriptor is processed : com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11
Module descriptor is processed : com.fasterxml.woodstox#woodstox-core;5.0.3
Module descriptor is processed : org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE
Module descriptor is processed : org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r
Sort dependencies of : com.jcraft#jsch;0.1.54 / Number of dependencies = 1
Sort done for : com.jcraft#jsch;0.1.54
Module descriptor is processed : com.googlecode.javaewah#JavaEWAH;0.7.9
Module descriptor is processed : org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE
Module descriptor is processed : org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE
Module descriptor is processed : org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE
Sort dependencies of : org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE / Number of dependencies = 2
Module descriptor is processed : org.springframework.integration#spring-integration-core;4.3.17.RELEASE
Non matching revision detected when sorting. org.springframework.integration#spring-integration-amqp depends on org.springframework.amqp#spring-rabbit;1.6.11.RELEASE, doesn’t match org.springframework.amqp#spring-rabbit;1.7.8.RELEASE
Sort done for : org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE
Module descriptor is processed : org.springframework.amqp#spring-rabbit;1.7.8.RELEASE
Module descriptor is processed : org.springframework.amqp#spring-amqp;1.7.8.RELEASE
Module descriptor is processed : com.rabbitmq#http-client;1.1.1.RELEASE
Module descriptor is processed : com.rabbitmq#amqp-client;4.0.3
Module descriptor is processed : org.codehaus.groovy#groovy;2.5.0
jline#jline;0.9.94 in default: excluding jline#jline;0.9.94!jline.jar
storing dependency org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE in props
storing dependency org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE in props
storing dependency org.codehaus.groovy#groovy-xml;2.5.0 in props
storing dependency org.codehaus.groovy#groovy-nio;2.5.0 in props
storing dependency org.codehaus.groovy#groovy-json;2.5.0 in props
resolved ivy file produced in cache
:: downloading artifacts ::
[NOT REQUIRED] org.springframework.cloud#spring-cloud-gateway-mvc;1.0.2.RELEASE!spring-cloud-gateway-mvc.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-vault-config-rabbitmq;1.1.1.RELEASE!spring-cloud-vault-config-rabbitmq.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-vault-config-consul;1.1.1.RELEASE!spring-cloud-vault-config-consul.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-vault-config-databases;1.1.1.RELEASE!spring-cloud-vault-config-databases.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-vault-config-aws;1.1.1.RELEASE!spring-cloud-vault-config-aws.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE!spring-cloud-vault-config.jar(test-jar)
[NOT REQUIRED] org.springframework.cloud#spring-cloud-vault-config;1.1.1.RELEASE!spring-cloud-vault-config.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-contract-stub-runner;1.2.5.RELEASE!spring-cloud-contract-stub-runner.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-cloudfoundry-discovery;1.1.2.RELEASE!spring-cloud-cloudfoundry-discovery.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-cloudfoundry;1.1.2.RELEASE!spring-cloud-starter-cloudfoundry.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-sleuth;1.3.4.RELEASE!spring-cloud-starter-sleuth.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-zookeeper-all;1.2.2.RELEASE!spring-cloud-starter-zookeeper-all.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-consul-all;1.3.4.RELEASE!spring-cloud-starter-consul-all.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-security;1.2.3.RELEASE!spring-cloud-starter-security.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-aws;1.2.3.RELEASE!spring-cloud-starter-aws.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-netflix-eureka-client;1.4.5.RELEASE!spring-cloud-starter-netflix-eureka-client.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-netflix-eureka-server;1.4.5.RELEASE!spring-cloud-starter-netflix-eureka-server.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-config-server;1.4.4.RELEASE!spring-cloud-config-server.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-config;1.4.4.RELEASE!spring-cloud-starter-config.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-bus-amqp;1.3.4.RELEASE!spring-cloud-starter-bus-amqp.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-stream;1.3.3.RELEASE!spring-cloud-stream.jar
[NOT REQUIRED] org.codehaus.groovy#groovy-xml;2.5.0!groovy-xml.jar
[NOT REQUIRED] org.codehaus.groovy#groovy-nio;2.5.0!groovy-nio.jar
[NOT REQUIRED] org.codehaus.groovy#groovy-json;2.5.0!groovy-json.jar
[NOT REQUIRED] org.springframework.boot#spring-boot-starter-web;1.5.14.RELEASE!spring-boot-starter-web.jar
[NOT REQUIRED] org.springframework.boot#spring-boot-starter;1.5.14.RELEASE!spring-boot-starter.jar
[NOT REQUIRED] org.springframework.boot#spring-boot-starter-tomcat;1.5.14.RELEASE!spring-boot-starter-tomcat.jar
[NOT REQUIRED] org.hibernate#hibernate-validator;5.3.6.Final!hibernate-validator.jar
[NOT REQUIRED] com.fasterxml.jackson.core#jackson-databind;2.8.11.2!jackson-databind.jar(bundle)
[NOT REQUIRED] org.springframework#spring-web;4.3.18.RELEASE!spring-web.jar
[NOT REQUIRED] org.springframework#spring-webmvc;4.3.18.RELEASE!spring-webmvc.jar
[NOT REQUIRED] org.springframework.boot#spring-boot;1.5.14.RELEASE!spring-boot.jar
[NOT REQUIRED] org.springframework.boot#spring-boot-autoconfigure;1.5.14.RELEASE!spring-boot-autoconfigure.jar
[NOT REQUIRED] org.springframework.boot#spring-boot-starter-logging;1.5.14.RELEASE!spring-boot-starter-logging.jar
[NOT REQUIRED] org.springframework#spring-core;4.3.18.RELEASE!spring-core.jar
[NOT REQUIRED] org.springframework#spring-context;4.3.18.RELEASE!spring-context.jar
[NOT REQUIRED] org.springframework#spring-aop;4.3.18.RELEASE!spring-aop.jar
[NOT REQUIRED] org.springframework#spring-beans;4.3.18.RELEASE!spring-beans.jar
[NOT REQUIRED] org.springframework#spring-expression;4.3.18.RELEASE!spring-expression.jar
[NOT REQUIRED] ch.qos.logback#logback-classic;1.1.11!logback-classic.jar
[NOT REQUIRED] org.slf4j#jcl-over-slf4j;1.7.25!jcl-over-slf4j.jar
[NOT REQUIRED] org.slf4j#jul-to-slf4j;1.7.25!jul-to-slf4j.jar
[NOT REQUIRED] org.slf4j#log4j-over-slf4j;1.7.25!log4j-over-slf4j.jar
[NOT REQUIRED] ch.qos.logback#logback-core;1.1.11!logback-core.jar
[NOT REQUIRED] org.slf4j#slf4j-api;1.7.25!slf4j-api.jar
[NOT REQUIRED] org.apache.tomcat.embed#tomcat-embed-core;8.5.31!tomcat-embed-core.jar
[NOT REQUIRED] org.apache.tomcat.embed#tomcat-embed-el;8.5.31!tomcat-embed-el.jar
[NOT REQUIRED] org.apache.tomcat.embed#tomcat-embed-websocket;8.5.31!tomcat-embed-websocket.jar
[NOT REQUIRED] org.apache.tomcat#tomcat-annotations-api;8.5.31!tomcat-annotations-api.jar
[NOT REQUIRED] javax.validation#validation-api;1.1.0.Final!validation-api.jar
[NOT REQUIRED] org.jboss.logging#jboss-logging;3.3.2.Final!jboss-logging.jar
[NOT REQUIRED] com.fasterxml#classmate;1.3.4!classmate.jar(bundle)
[NOT REQUIRED] com.fasterxml.jackson.core#jackson-annotations;2.8.0!jackson-annotations.jar(bundle)
[NOT REQUIRED] com.fasterxml.jackson.core#jackson-core;2.8.11!jackson-core.jar(bundle)
[NOT REQUIRED] org.yaml#snakeyaml;1.17!snakeyaml.jar(bundle)
[NOT REQUIRED] commons-logging#commons-logging;1.2!commons-logging.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-commons;1.3.4.RELEASE!spring-cloud-commons.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-context;1.3.4.RELEASE!spring-cloud-context.jar
[NOT REQUIRED] org.springframework.vault#spring-vault-core;1.1.2.RELEASE!spring-vault-core.jar
[NOT REQUIRED] org.springframework.security#spring-security-crypto;4.2.7.RELEASE!spring-security-crypto.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-contract-verifier;1.2.5.RELEASE!spring-cloud-contract-verifier.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-contract-shade;1.2.5.RELEASE!spring-cloud-contract-shade.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-contract-spec;1.2.5.RELEASE!spring-cloud-contract-spec.jar
[NOT REQUIRED] junit#junit;4.12!junit.jar
[NOT REQUIRED] org.springframework.boot#spring-boot-test-autoconfigure;1.5.14.RELEASE!spring-boot-test-autoconfigure.jar
[NOT REQUIRED] javax.inject#javax.inject;1!javax.inject.jar
[NOT REQUIRED] com.github.tomakehurst#wiremock-standalone;2.16.0!wiremock-standalone.jar
[NOT REQUIRED] com.toomuchcoding.jsonassert#jsonassert;0.4.12!jsonassert.jar
[NOT REQUIRED] org.skyscreamer#jsonassert;1.4.0!jsonassert.jar
[NOT REQUIRED] com.github.jknack#handlebars;4.0.6!handlebars.jar
[NOT REQUIRED] commons-beanutils#commons-beanutils;1.9.3!commons-beanutils.jar
[NOT REQUIRED] org.springframework.boot#spring-boot-starter-test;1.5.14.RELEASE!spring-boot-starter-test.jar
[NOT REQUIRED] dk.brics.automaton#automaton;1.11-8!automaton.jar
[NOT REQUIRED] org.apache.commons#commons-text;1.1!commons-text.jar
[NOT REQUIRED] org.apache.commons#commons-lang3;3.5!commons-lang3.jar
[NOT REQUIRED] org.springframework.boot#spring-boot-test;1.5.14.RELEASE!spring-boot-test.jar
[NOT REQUIRED] com.jayway.jsonpath#json-path;2.2.0!json-path.jar
[NOT REQUIRED] net.minidev#json-smart;2.2.1!json-smart.jar(bundle)
[NOT REQUIRED] net.minidev#accessors-smart;1.1!accessors-smart.jar(bundle)
[NOT REQUIRED] org.ow2.asm#asm;5.0.3!asm.jar
[NOT REQUIRED] com.vaadin.external.google#android-json;0.0.20131108.vaadin1!android-json.jar
[NOT REQUIRED] org.antlr#antlr4-runtime;4.5.1-1!antlr4-runtime.jar
[NOT REQUIRED] org.mozilla#rhino;1.7R4!rhino.jar
[NOT REQUIRED] commons-collections#commons-collections;3.2.2!commons-collections.jar
[NOT REQUIRED] org.assertj#assertj-core;2.6.0!assertj-core.jar(bundle)
[NOT REQUIRED] org.mockito#mockito-core;1.10.19!mockito-core.jar
[NOT REQUIRED] org.hamcrest#hamcrest-core;1.3!hamcrest-core.jar
[NOT REQUIRED] org.hamcrest#hamcrest-library;1.3!hamcrest-library.jar
[NOT REQUIRED] org.springframework#spring-test;4.3.18.RELEASE!spring-test.jar
[NOT REQUIRED] org.objenesis#objenesis;2.1!objenesis.jar
[NOT REQUIRED] org.cloudfoundry#cloudfoundry-client-lib;1.1.3!cloudfoundry-client-lib.jar
[NOT REQUIRED] org.springframework.security.oauth#spring-security-oauth2;2.0.15.RELEASE!spring-security-oauth2.jar
[NOT REQUIRED] org.apache.httpcomponents#httpclient;4.5.5!httpclient.jar
[NOT REQUIRED] commons-io#commons-io;2.1!commons-io.jar
[NOT REQUIRED] com.esotericsoftware.yamlbeans#yamlbeans;1.06!yamlbeans.jar
[NOT REQUIRED] org.apache.tomcat#tomcat-juli;8.0.15!tomcat-juli.jar
[NOT REQUIRED] com.google.protobuf#protobuf-java;2.6.1!protobuf-java.jar(bundle)
[NOT REQUIRED] org.springframework.security#spring-security-core;4.2.7.RELEASE!spring-security-core.jar
[NOT REQUIRED] org.springframework.security#spring-security-config;4.2.7.RELEASE!spring-security-config.jar
[NOT REQUIRED] org.springframework.security#spring-security-web;4.2.7.RELEASE!spring-security-web.jar
[NOT REQUIRED] commons-codec#commons-codec;1.10!commons-codec.jar
[NOT REQUIRED] org.codehaus.jackson#jackson-mapper-asl;1.9.13!jackson-mapper-asl.jar
[NOT REQUIRED] aopalliance#aopalliance;1.0!aopalliance.jar
[NOT REQUIRED] org.codehaus.jackson#jackson-core-asl;1.9.13!jackson-core-asl.jar
[NOT REQUIRED] org.apache.httpcomponents#httpcore;4.4.9!httpcore.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter;1.3.4.RELEASE!spring-cloud-starter.jar
[NOT REQUIRED] org.springframework.boot#spring-boot-starter-cloud-connectors;1.5.14.RELEASE!spring-boot-starter-cloud-connectors.jar
[NOT REQUIRED] org.springframework.security#spring-security-rsa;1.0.3.RELEASE!spring-security-rsa.jar
[NOT REQUIRED] org.bouncycastle#bcpkix-jdk15on;1.55!bcpkix-jdk15on.jar
[NOT REQUIRED] org.bouncycastle#bcprov-jdk15on;1.55!bcprov-jdk15on.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-spring-service-connector;1.2.6.RELEASE!spring-cloud-spring-service-connector.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-cloudfoundry-connector;1.2.6.RELEASE!spring-cloud-cloudfoundry-connector.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-heroku-connector;1.2.6.RELEASE!spring-cloud-heroku-connector.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-localconfig-connector;1.2.6.RELEASE!spring-cloud-localconfig-connector.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-core;1.2.6.RELEASE!spring-cloud-core.jar
[NOT REQUIRED] org.springframework.boot#spring-boot-starter-aop;1.5.14.RELEASE!spring-boot-starter-aop.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-sleuth-core;1.3.4.RELEASE!spring-cloud-sleuth-core.jar
[NOT REQUIRED] org.aspectj#aspectjweaver;1.8.13!aspectjweaver.jar
[NOT REQUIRED] org.aspectj#aspectjrt;1.8.13!aspectjrt.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-zookeeper-config;1.2.2.RELEASE!spring-cloud-starter-zookeeper-config.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-zookeeper-discovery;1.2.2.RELEASE!spring-cloud-starter-zookeeper-discovery.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-zookeeper;1.2.2.RELEASE!spring-cloud-starter-zookeeper.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-zookeeper-config;1.2.2.RELEASE!spring-cloud-zookeeper-config.jar
[NOT REQUIRED] org.apache.curator#curator-recipes;2.11.1!curator-recipes.jar(bundle)
[NOT REQUIRED] org.springframework.cloud#spring-cloud-zookeeper-core;1.2.2.RELEASE!spring-cloud-zookeeper-core.jar
[NOT REQUIRED] org.apache.curator#curator-framework;2.11.1!curator-framework.jar(bundle)
[NOT REQUIRED] org.apache.curator#curator-client;2.11.1!curator-client.jar(bundle)
[NOT REQUIRED] org.apache.zookeeper#zookeeper;3.4.8!zookeeper.jar
[NOT REQUIRED] com.google.guava#guava;18.0!guava.jar(bundle)
jline#jline;0.9.94 in default: excluding jline#jline;0.9.94!jline.jar
jline#jline;0.9.94 in default: excluding jline#jline;0.9.94!jline.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-zookeeper-discovery;1.2.2.RELEASE!spring-cloud-zookeeper-discovery.jar
[NOT REQUIRED] org.apache.curator#curator-x-discovery;2.11.1!curator-x-discovery.jar(bundle)
[NOT REQUIRED] org.springframework.cloud#spring-cloud-netflix-core;1.4.5.RELEASE!spring-cloud-netflix-core.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-archaius;1.4.5.RELEASE!spring-cloud-starter-archaius.jar
[NOT REQUIRED] com.netflix.ribbon#ribbon;2.2.5!ribbon.jar
[NOT REQUIRED] com.netflix.ribbon#ribbon-core;2.2.5!ribbon-core.jar
[NOT REQUIRED] com.netflix.ribbon#ribbon-httpclient;2.2.5!ribbon-httpclient.jar
[NOT REQUIRED] com.netflix.ribbon#ribbon-loadbalancer;2.2.5!ribbon-loadbalancer.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-netflix-archaius;1.4.5.RELEASE!spring-cloud-starter-netflix-archaius.jar
[NOT REQUIRED] com.netflix.archaius#archaius-core;0.7.4!archaius-core.jar
[NOT REQUIRED] commons-configuration#commons-configuration;1.8!commons-configuration.jar
[NOT REQUIRED] commons-lang#commons-lang;2.6!commons-lang.jar
[NOT REQUIRED] com.google.code.findbugs#jsr305;3.0.1!jsr305.jar
[NOT REQUIRED] com.netflix.ribbon#ribbon-transport;2.2.5!ribbon-transport.jar
[NOT REQUIRED] com.netflix.hystrix#hystrix-core;1.5.12!hystrix-core.jar
[NOT REQUIRED] io.reactivex#rxjava;1.2.0!rxjava.jar
[NOT REQUIRED] io.reactivex#rxnetty;0.4.9!rxnetty.jar
[NOT REQUIRED] com.google.code.findbugs#annotations;2.0.0!annotations.jar
[NOT REQUIRED] io.reactivex#rxnetty-contexts;0.4.9!rxnetty-contexts.jar
[NOT REQUIRED] io.reactivex#rxnetty-servo;0.4.9!rxnetty-servo.jar
[NOT REQUIRED] com.netflix.netflix-commons#netflix-statistics;0.1.1!netflix-statistics.jar
[NOT REQUIRED] com.netflix.servo#servo-core;0.10.1!servo-core.jar
[NOT REQUIRED] com.netflix.netflix-commons#netflix-commons-util;0.1.1!netflix-commons-util.jar
[NOT REQUIRED] com.netflix.servo#servo-internal;0.10.1!servo-internal.jar
[NOT REQUIRED] io.netty#netty-codec-http;4.0.27.Final!netty-codec-http.jar
[NOT REQUIRED] io.netty#netty-transport-native-epoll;4.0.27.Final!netty-transport-native-epoll.jar
[NOT REQUIRED] io.netty#netty-codec;4.0.27.Final!netty-codec.jar
[NOT REQUIRED] io.netty#netty-handler;4.0.27.Final!netty-handler.jar
[NOT REQUIRED] io.netty#netty-transport;4.0.27.Final!netty-transport.jar
[NOT REQUIRED] io.netty#netty-buffer;4.0.27.Final!netty-buffer.jar
[NOT REQUIRED] io.netty#netty-common;4.0.27.Final!netty-common.jar
[NOT REQUIRED] org.hdrhistogram#HdrHistogram;2.1.9!HdrHistogram.jar(bundle)
[NOT REQUIRED] com.sun.jersey#jersey-client;1.19.1!jersey-client.jar
[NOT REQUIRED] com.sun.jersey.contribs#jersey-apache-client4;1.19.1!jersey-apache-client4.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-consul-bus;1.3.4.RELEASE!spring-cloud-starter-consul-bus.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-consul-config;1.3.4.RELEASE!spring-cloud-starter-consul-config.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-consul-discovery;1.3.4.RELEASE!spring-cloud-starter-consul-discovery.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-consul;1.3.4.RELEASE!spring-cloud-starter-consul.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-consul-binder;1.3.4.RELEASE!spring-cloud-consul-binder.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-bus;1.3.4.RELEASE!spring-cloud-bus.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-consul-core;1.3.4.RELEASE!spring-cloud-consul-core.jar
[NOT REQUIRED] com.ecwid.consul#consul-api;1.3.0!consul-api.jar
[NOT REQUIRED] org.springframework.boot#spring-boot-starter-actuator;1.5.14.RELEASE!spring-boot-starter-actuator.jar
[NOT REQUIRED] org.springframework.boot#spring-boot-starter-validation;1.5.14.RELEASE!spring-boot-starter-validation.jar
[NOT REQUIRED] org.springframework#spring-messaging;4.3.18.RELEASE!spring-messaging.jar
[NOT REQUIRED] org.springframework.integration#spring-integration-core;4.3.17.RELEASE!spring-integration-core.jar
[NOT REQUIRED] org.springframework.integration#spring-integration-jmx;4.3.17.RELEASE!spring-integration-jmx.jar
[NOT REQUIRED] org.springframework#spring-tuple;1.0.0.RELEASE!spring-tuple.jar
[NOT REQUIRED] org.springframework.integration#spring-integration-tuple;1.0.0.RELEASE!spring-integration-tuple.jar
[NOT REQUIRED] org.springframework.retry#spring-retry;1.2.2.RELEASE!spring-retry.jar
[NOT REQUIRED] org.springframework.boot#spring-boot-actuator;1.5.14.RELEASE!spring-boot-actuator.jar
[NOT REQUIRED] org.springframework#spring-tx;4.3.18.RELEASE!spring-tx.jar
[NOT REQUIRED] com.esotericsoftware#kryo-shaded;3.0.3!kryo-shaded.jar(bundle)
[NOT REQUIRED] com.esotericsoftware#minlog;1.3.0!minlog.jar(bundle)
[NOT REQUIRED] org.springframework.cloud#spring-cloud-consul-config;1.3.4.RELEASE!spring-cloud-consul-config.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-consul-discovery;1.3.4.RELEASE!spring-cloud-consul-discovery.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-ribbon;1.4.5.RELEASE!spring-cloud-starter-ribbon.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-netflix-ribbon;1.4.5.RELEASE!spring-cloud-starter-netflix-ribbon.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-security;1.2.3.RELEASE!spring-cloud-security.jar
[NOT REQUIRED] org.springframework.boot#spring-boot-starter-security;1.5.14.RELEASE!spring-boot-starter-security.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-aws-context;1.2.3.RELEASE!spring-cloud-aws-context.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-aws-autoconfigure;1.2.3.RELEASE!spring-cloud-aws-autoconfigure.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-aws-core;1.2.3.RELEASE!spring-cloud-aws-core.jar
[NOT REQUIRED] com.amazonaws#aws-java-sdk-core;1.11.125!aws-java-sdk-core.jar
[NOT REQUIRED] com.amazonaws#aws-java-sdk-s3;1.11.125!aws-java-sdk-s3.jar
[NOT REQUIRED] com.amazonaws#aws-java-sdk-ec2;1.11.125!aws-java-sdk-ec2.jar
[NOT REQUIRED] com.amazonaws#aws-java-sdk-cloudformation;1.11.125!aws-java-sdk-cloudformation.jar
[NOT REQUIRED] software.amazon.ion#ion-java;1.0.2!ion-java.jar(bundle)
[NOT REQUIRED] com.fasterxml.jackson.dataformat#jackson-dataformat-cbor;2.8.11!jackson-dataformat-cbor.jar(bundle)
[NOT REQUIRED] joda-time#joda-time;2.9.9!joda-time.jar
[NOT REQUIRED] com.amazonaws#aws-java-sdk-kms;1.11.125!aws-java-sdk-kms.jar
[NOT REQUIRED] com.amazonaws#jmespath-java;1.11.125!jmespath-java.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-netflix-eureka-client;1.4.5.RELEASE!spring-cloud-netflix-eureka-client.jar
[NOT REQUIRED] com.netflix.eureka#eureka-client;1.7.2!eureka-client.jar
[NOT REQUIRED] com.netflix.eureka#eureka-core;1.7.2!eureka-core.jar
[NOT REQUIRED] com.netflix.ribbon#ribbon-eureka;2.2.5!ribbon-eureka.jar
[NOT REQUIRED] com.thoughtworks.xstream#xstream;1.4.10!xstream.jar
[NOT REQUIRED] org.codehaus.jettison#jettison;1.3.7!jettison.jar(bundle)
[NOT REQUIRED] com.netflix.netflix-commons#netflix-eventbus;0.3.0!netflix-eventbus.jar
[NOT REQUIRED] javax.ws.rs#jsr311-api;1.1.1!jsr311-api.jar
[NOT REQUIRED] com.sun.jersey#jersey-core;1.19.1!jersey-core.jar
[NOT REQUIRED] com.google.inject#guice;4.1.0!guice.jar
[NOT REQUIRED] stax#stax-api;1.0.1!stax-api.jar
[NOT REQUIRED] com.netflix.netflix-commons#netflix-infix;0.3.0!netflix-infix.jar
[NOT REQUIRED] org.apache.commons#commons-math;2.2!commons-math.jar
[NOT REQUIRED] commons-jxpath#commons-jxpath;1.3!commons-jxpath.jar
[NOT REQUIRED] org.antlr#antlr-runtime;3.4!antlr-runtime.jar
[NOT REQUIRED] com.google.code.gson#gson;2.8.5!gson.jar
[NOT REQUIRED] org.antlr#stringtemplate;3.2.1!stringtemplate.jar
[NOT REQUIRED] antlr#antlr;2.7.7!antlr.jar
[NOT REQUIRED] xmlpull#xmlpull;1.1.3.1!xmlpull.jar
[NOT REQUIRED] xpp3#xpp3_min;1.1.4c!xpp3_min.jar
[NOT REQUIRED] org.codehaus.woodstox#woodstox-core-asl;4.4.1!woodstox-core-asl.jar
[NOT REQUIRED] javax.xml.stream#stax-api;1.0-2!stax-api.jar
[NOT REQUIRED] org.codehaus.woodstox#stax2-api;3.1.4!stax2-api.jar(bundle)
[NOT REQUIRED] org.springframework.cloud#spring-cloud-netflix-eureka-server;1.4.5.RELEASE!spring-cloud-netflix-eureka-server.jar
[NOT REQUIRED] org.springframework.boot#spring-boot-starter-freemarker;1.5.14.RELEASE!spring-boot-starter-freemarker.jar
[NOT REQUIRED] com.sun.jersey#jersey-servlet;1.19.1!jersey-servlet.jar
[NOT REQUIRED] com.sun.jersey#jersey-server;1.19.1!jersey-server.jar
[NOT REQUIRED] com.fasterxml.jackson.dataformat#jackson-dataformat-xml;2.8.11!jackson-dataformat-xml.jar(bundle)
[NOT REQUIRED] org.freemarker#freemarker;2.3.28!freemarker.jar
[NOT REQUIRED] org.springframework#spring-context-support;4.3.18.RELEASE!spring-context-support.jar
[NOT REQUIRED] com.fasterxml.jackson.module#jackson-module-jaxb-annotations;2.8.11!jackson-module-jaxb-annotations.jar(bundle)
[NOT REQUIRED] com.fasterxml.woodstox#woodstox-core;5.0.3!woodstox-core.jar(bundle)
[NOT REQUIRED] org.springframework.cloud#spring-cloud-config-client;1.4.4.RELEASE!spring-cloud-config-client.jar
[NOT REQUIRED] org.eclipse.jgit#org.eclipse.jgit;3.6.1.201501031845-r!org.eclipse.jgit.jar
[NOT REQUIRED] com.jcraft#jsch;0.1.54!jsch.jar
[NOT REQUIRED] com.googlecode.javaewah#JavaEWAH;0.7.9!JavaEWAH.jar(bundle)
[NOT REQUIRED] org.springframework.cloud#spring-cloud-starter-stream-rabbit;1.3.4.RELEASE!spring-cloud-starter-stream-rabbit.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-stream-binder-rabbit;1.3.4.RELEASE!spring-cloud-stream-binder-rabbit.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-stream-binder-rabbit-core;1.3.4.RELEASE!spring-cloud-stream-binder-rabbit-core.jar
[NOT REQUIRED] org.springframework.cloud#spring-cloud-stream-codec;1.3.3.RELEASE!spring-cloud-stream-codec.jar
[NOT REQUIRED] org.springframework.boot#spring-boot-starter-amqp;1.5.14.RELEASE!spring-boot-starter-amqp.jar
[NOT REQUIRED] org.springframework.integration#spring-integration-amqp;4.3.17.RELEASE!spring-integration-amqp.jar
[NOT REQUIRED] org.springframework.amqp#spring-rabbit;1.7.8.RELEASE!spring-rabbit.jar
[NOT REQUIRED] org.springframework.amqp#spring-amqp;1.7.8.RELEASE!spring-amqp.jar
[NOT REQUIRED] com.rabbitmq#http-client;1.1.1.RELEASE!http-client.jar
[NOT REQUIRED] com.rabbitmq#amqp-client;4.0.3!amqp-client.jar
[NOT REQUIRED] org.codehaus.groovy#groovy;2.5.0!groovy.jar
resolve done (2088ms resolve - 80ms download)NameDefaultDescriptionencrypt.fail-on-errortrueFlag to say that a process should fail if there is an encryption or decryption
error.encrypt.keyA symmetric key. As a stronger alternative consider using a keystore.encrypt.key-store.aliasAlias for a key in the store.encrypt.key-store.locationLocation of the key store file, e.g. classpath:/keystore.jks.encrypt.key-store.passwordPassword that locks the keystore.encrypt.key-store.secretSecret protecting the key (defaults to the same as the password).encrypt.rsa.algorithmThe RSA algorithm to use (DEFAULT or OEAP). Once it is set do not change it (or
existing ciphers will not a decryptable).encrypt.rsa.saltdeadbeefSalt for the random secret used to encrypt cipher text. Once it is set do not
change it (or existing ciphers will not a decryptable).encrypt.rsa.strongfalseFlag to indicate that "strong" AES encryption should be used internally. If
true then the GCM algorithm is applied to the AES encrypted bytes. Default is
false (in which case "standard" CBC is used instead). Once it is set do not
change it (or existing ciphers will not a decryptable).endpoints.bus.enabledendpoints.bus.idendpoints.bus.sensitiveendpoints.consul.enabledendpoints.consul.idendpoints.consul.sensitiveendpoints.env.post.enabledtrueEnable changing the Environment through a POST to /env.endpoints.features.enabledendpoints.features.idendpoints.features.sensitiveendpoints.pause.enabledtrueEnable the /pause endpoint (to send Lifecycle.stop()).endpoints.pause.idendpoints.pause.sensitiveendpoints.refresh.enabledtrueEnable the /refresh endpoint to refresh configuration and re-initialize refresh scoped beans.endpoints.refresh.idendpoints.refresh.sensitiveendpoints.restart.enabledtrueEnable the /restart endpoint to restart the application context.endpoints.restart.idendpoints.restart.pause-endpoint.enabledendpoints.restart.pause-endpoint.idendpoints.restart.pause-endpoint.sensitiveendpoints.restart.resume-endpoint.enabledendpoints.restart.resume-endpoint.idendpoints.restart.resume-endpoint.sensitiveendpoints.restart.sensitiveendpoints.restart.timeout0endpoints.resume.enabledtrueEnable the /resume endpoint (to send Lifecycle.start()).endpoints.resume.idendpoints.resume.sensitiveendpoints.routes.enabledendpoints.routes.idendpoints.routes.sensitiveendpoints.zookeeper.enabledtrueEnable the /zookeeper endpoint to inspect the state of zookeeper.eureka.client.allow-redirectsfalseIndicates whether server can redirect a client request to a backup server/cluster.
If set to false, the server will handle the request directly, If set to true, it
may send HTTP redirect to the client, with a new server location.eureka.client.availability-zonesGets the list of availability zones (used in AWS data centers) for the region in
which this instance resides.
The changes are effective at runtime at the next registry fetch cycle as specified
by registryFetchIntervalSeconds.eureka.client.backup-registry-implGets the name of the implementation which implements BackupRegistry to fetch the
registry information as a fall back option for only the first time when the eureka
client starts.
This may be needed for applications which needs additional resiliency for registry
information without which it cannot operate.eureka.client.cache-refresh-executor-exponential-back-off-bound10Cache refresh executor exponential back off related property. It is a maximum
multiplier value for retry delay, in case where a sequence of timeouts occurred.eureka.client.cache-refresh-executor-thread-pool-size2The thread pool size for the cacheRefreshExecutor to initialise witheureka.client.client-data-acceptEurekaAccept name for client data accepteureka.client.decoder-nameThis is a transient config and once the latest codecs are stable, can be removed
(as there will only be one)eureka.client.disable-deltafalseIndicates whether the eureka client should disable fetching of delta and should
rather resort to getting the full registry information.
Note that the delta fetches can reduce the traffic tremendously, because the rate
of change with the eureka server is normally much lower than the rate of fetches.
The changes are effective at runtime at the next registry fetch cycle as specified
by registryFetchIntervalSecondseureka.client.dollar-replacement_-Get a replacement string for Dollar sign <code>$</code> during
serializing/deserializing information in eureka server.eureka.client.enabledtrueFlag to indicate that the Eureka client is enabled.eureka.client.encoder-nameThis is a transient config and once the latest codecs are stable, can be removed
(as there will only be one)eureka.client.escape-char-replacement__Get a replacement string for underscore sign <code>_</code> during
serializing/deserializing information in eureka server.eureka.client.eureka-connection-idle-timeout-seconds30Indicates how much time (in seconds) that the HTTP connections to eureka server can
stay idle before it can be closed.
In the AWS environment, it is recommended that the values is 30 seconds or less,
since the firewall cleans up the connection information after a few mins leaving
the connection hanging in limboeureka.client.eureka-server-connect-timeout-seconds5Indicates how long to wait (in seconds) before a connection to eureka server needs
to timeout. Note that the connections in the client are pooled by
org.apache.http.client.HttpClient and this setting affects the actual connection
creation and also the wait time to get the connection from the pool.eureka.client.eureka-server-d-n-s-nameGets the DNS name to be queried to get the list of eureka servers.This information
is not required if the contract returns the service urls by implementing
serviceUrls.
The DNS mechanism is used when useDnsForFetchingServiceUrls is set to true and the
eureka client expects the DNS to configured a certain way so that it can fetch
changing eureka servers dynamically.
The changes are effective at runtime.eureka.client.eureka-server-portGets the port to be used to construct the service url to contact eureka server when
the list of eureka servers come from the DNS.This information is not required if
the contract returns the service urls eurekaServerServiceUrls(String).
The DNS mechanism is used when useDnsForFetchingServiceUrls is set to true and the
eureka client expects the DNS to configured a certain way so that it can fetch
changing eureka servers dynamically.
The changes are effective at runtime.eureka.client.eureka-server-read-timeout-seconds8Indicates how long to wait (in seconds) before a read from eureka server needs to
timeout.eureka.client.eureka-server-total-connections200Gets the total number of connections that is allowed from eureka client to all
eureka servers.eureka.client.eureka-server-total-connections-per-host50Gets the total number of connections that is allowed from eureka client to a eureka
server host.eureka.client.eureka-server-u-r-l-contextGets the URL context to be used to construct the service url to contact eureka
server when the list of eureka servers come from the DNS. This information is not
required if the contract returns the service urls from eurekaServerServiceUrls.
The DNS mechanism is used when useDnsForFetchingServiceUrls is set to true and the
eureka client expects the DNS to configured a certain way so that it can fetch
changing eureka servers dynamically. The changes are effective at runtime.eureka.client.eureka-service-url-poll-interval-seconds0Indicates how often(in seconds) to poll for changes to eureka server information.
Eureka servers could be added or removed and this setting controls how soon the
eureka clients should know about it.eureka.client.fetch-registrytrueIndicates whether this client should fetch eureka registry information from eureka
server.eureka.client.fetch-remote-regions-registryComma separated list of regions for which the eureka registry information will be
fetched. It is mandatory to define the availability zones for each of these regions
as returned by availabilityZones. Failing to do so, will result in failure of
discovery client startup.eureka.client.filter-only-up-instancestrueIndicates whether to get the applications after filtering the applications for
instances with only InstanceStatus UP states.eureka.client.g-zip-contenttrueIndicates whether the content fetched from eureka server has to be compressed
whenever it is supported by the server. The registry information from the eureka
server is compressed for optimum network traffic.eureka.client.heartbeat-executor-exponential-back-off-bound10Heartbeat executor exponential back off related property. It is a maximum
multiplier value for retry delay, in case where a sequence of timeouts occurred.eureka.client.heartbeat-executor-thread-pool-size2The thread pool size for the heartbeatExecutor to initialise witheureka.client.initial-instance-info-replication-interval-seconds40Indicates how long initially (in seconds) to replicate instance info to the eureka
servereureka.client.instance-info-replication-interval-seconds30Indicates how often(in seconds) to replicate instance changes to be replicated to
the eureka server.eureka.client.log-delta-difffalseIndicates whether to log differences between the eureka server and the eureka
client in terms of registry information.
Eureka client tries to retrieve only delta changes from eureka server to minimize
network traffic. After receiving the deltas, eureka client reconciles the
information from the server to verify it has not missed out some information.
Reconciliation failures could happen when the client has had network issues
communicating to server.If the reconciliation fails, eureka client gets the full
registry information.
While getting the full registry information, the eureka client can log the
differences between the client and the server and this setting controls that.
The changes are effective at runtime at the next registry fetch cycle as specified
by registryFetchIntervalSecondsreureka.client.on-demand-update-status-changetrueIf set to true, local status updates via ApplicationInfoManager will trigger
on-demand (but rate limited) register/updates to remote eureka serverseureka.client.prefer-same-zone-eurekatrueIndicates whether or not this instance should try to use the eureka server in the
same zone for latency and/or other reason.
Ideally eureka clients are configured to talk to servers in the same zone
The changes are effective at runtime at the next registry fetch cycle as specified
by registryFetchIntervalSecondseureka.client.property-resolvereureka.client.proxy-hostGets the proxy host to eureka server if any.eureka.client.proxy-passwordGets the proxy password if any.eureka.client.proxy-portGets the proxy port to eureka server if any.eureka.client.proxy-user-nameGets the proxy user name if any.eureka.client.regionus-east-1Gets the region (used in AWS datacenters) where this instance resides.eureka.client.register-with-eurekatrueIndicates whether or not this instance should register its information with eureka
server for discovery by others.
In some cases, you do not want your instances to be discovered whereas you just
want do discover other instances.eureka.client.registry-fetch-interval-seconds30Indicates how often(in seconds) to fetch the registry information from the eureka
server.eureka.client.registry-refresh-single-vip-addressIndicates whether the client is only interested in the registry information for a
single VIP.eureka.client.service-urlMap of availability zone to list of fully qualified URLs to communicate with eureka
server. Each value can be a single URL or a comma separated list of alternative
locations.
Typically the eureka server URLs carry protocol,host,port,context and version
information if any. Example:
http://ec2-256-156-243-129.compute-1.amazonaws.com:7001/eureka/
The changes are effective at runtime at the next service url refresh cycle as
specified by eurekaServiceUrlPollIntervalSeconds.eureka.client.use-dns-for-fetching-service-urlsfalseIndicates whether the eureka client should use the DNS mechanism to fetch a list of
eureka servers to talk to. When the DNS name is updated to have additional servers,
that information is used immediately after the eureka client polls for that
information as specified in eurekaServiceUrlPollIntervalSeconds.
Alternatively, the service urls can be returned serviceUrls, but the users should
implement their own mechanism to return the updated list in case of changes.
The changes are effective at runtime.eureka.dashboard.enabledtrueFlag to enable the Eureka dashboard. Default true.eureka.dashboard.path/The path to the Eureka dashboard (relative to the servlet path). Defaults to "/".eureka.instance.a-s-g-nameGets the AWS autoscaling group name associated with this instance. This information
is specifically used in an AWS environment to automatically put an instance out of
service after the instance is launched and it has been disabled for traffic..eureka.instance.app-group-nameGet the name of the application group to be registered with eureka.eureka.instance.appnameunknownGet the name of the application to be registered with eureka.eureka.instance.data-center-infoReturns the data center this instance is deployed. This information is used to get
some AWS specific instance information if the instance is deployed in AWS.eureka.instance.default-address-resolution-order[]eureka.instance.environmenteureka.instance.health-check-urlGets the absolute health check page URL for this instance. The users can provide
the healthCheckUrlPath if the health check page resides in the same instance
talking to eureka, else in the cases where the instance is a proxy for some other
server, users can provide the full URL. If the full URL is provided it takes
precedence.
<p>
It is normally used for making educated decisions based on the health of the
instance - for example, it can be used to determine whether to proceed deployments
to an entire farm or stop the deployments without causing further damage. The full
URL should follow the format http://${eureka.hostname}:7001/ where the value
${eureka.hostname} is replaced at runtime.eureka.instance.health-check-url-path/healthGets the relative health check URL path for this instance. The health check page
URL is then constructed out of the hostname and the type of communication - secure
or unsecure as specified in securePort and nonSecurePort.
It is normally used for making educated decisions based on the health of the
instance - for example, it can be used to determine whether to proceed deployments
to an entire farm or stop the deployments without causing further damage.eureka.instance.home-page-urlGets the absolute home page URL for this instance. The users can provide the
homePageUrlPath if the home page resides in the same instance talking to eureka,
else in the cases where the instance is a proxy for some other server, users can
provide the full URL. If the full URL is provided it takes precedence.
It is normally used for informational purposes for other services to use it as a
landing page. The full URL should follow the format http://${eureka.hostname}:7001/
where the value ${eureka.hostname} is replaced at runtime.eureka.instance.home-page-url-path/Gets the relative home page URL Path for this instance. The home page URL is then
constructed out of the hostName and the type of communication - secure or unsecure.
It is normally used for informational purposes for other services to use it as a
landing page.eureka.instance.hostnameThe hostname if it can be determined at configuration time (otherwise it will be
guessed from OS primitives).eureka.instance.initial-statusInitial status to register with rmeote Eureka server.eureka.instance.instance-enabled-onitfalseIndicates whether the instance should be enabled for taking traffic as soon as it
is registered with eureka. Sometimes the application might need to do some
pre-processing before it is ready to take traffic.eureka.instance.instance-idGet the unique Id (within the scope of the appName) of this instance to be
registered with eureka.eureka.instance.ip-addressGet the IPAdress of the instance. This information is for academic purposes only as
the communication from other instances primarily happen using the information
supplied in {@link #getHostName(boolean)}.eureka.instance.lease-expiration-duration-in-seconds90Indicates the time in seconds that the eureka server waits since it received the
last heartbeat before it can remove this instance from its view and there by
disallowing traffic to this instance.
Setting this value too long could mean that the traffic could be routed to the
instance even though the instance is not alive. Setting this value too small could
mean, the instance may be taken out of traffic because of temporary network
glitches.This value to be set to atleast higher than the value specified in
leaseRenewalIntervalInSeconds.eureka.instance.lease-renewal-interval-in-seconds30Indicates how often (in seconds) the eureka client needs to send heartbeats to
eureka server to indicate that it is still alive. If the heartbeats are not
received for the period specified in leaseExpirationDurationInSeconds, eureka
server will remove the instance from its view, there by disallowing traffic to this
instance.
Note that the instance could still not take traffic if it implements
HealthCheckCallback and then decides to make itself unavailable.eureka.instance.metadata-mapGets the metadata name/value pairs associated with this instance. This information
is sent to eureka server and can be used by other instances.eureka.instance.namespaceeurekaGet the namespace used to find properties. Ignored in Spring Cloud.eureka.instance.non-secure-port80Get the non-secure port on which the instance should receive traffic.eureka.instance.non-secure-port-enabledtrueIndicates whether the non-secure port should be enabled for traffic or not.eureka.instance.prefer-ip-addressfalseFlag to say that, when guessing a hostname, the IP address of the server should be
used in prference to the hostname reported by the OS.eureka.instance.registry.default-open-for-traffic-count1Value used in determining when leases are cancelled, default to 1 for standalone.
Should be set to 0 for peer replicated eurekaseureka.instance.registry.expected-number-of-renews-per-min1eureka.instance.secure-health-check-urlGets the absolute secure health check page URL for this instance. The users can
provide the secureHealthCheckUrl if the health check page resides in the same
instance talking to eureka, else in the cases where the instance is a proxy for
some other server, users can provide the full URL. If the full URL is provided it
takes precedence.
<p>
It is normally used for making educated decisions based on the health of the
instance - for example, it can be used to determine whether to proceed deployments
to an entire farm or stop the deployments without causing further damage. The full
URL should follow the format http://${eureka.hostname}:7001/ where the value
${eureka.hostname} is replaced at runtime.eureka.instance.secure-port443Get the Secure port on which the instance should receive traffic.eureka.instance.secure-port-enabledfalseIndicates whether the secure port should be enabled for traffic or not.eureka.instance.secure-virtual-host-nameunknownGets the secure virtual host name defined for this instance.
This is typically the way other instance would find this instance by using the
secure virtual host name.Think of this as similar to the fully qualified domain
name, that the users of your services will need to find this instance.eureka.instance.status-page-urlGets the absolute status page URL path for this instance. The users can provide the
statusPageUrlPath if the status page resides in the same instance talking to
eureka, else in the cases where the instance is a proxy for some other server,
users can provide the full URL. If the full URL is provided it takes precedence.
It is normally used for informational purposes for other services to find about the
status of this instance. Users can provide a simple HTML indicating what is the
current status of the instance.eureka.instance.status-page-url-path/infoGets the relative status page URL path for this instance. The status page URL is
then constructed out of the hostName and the type of communication - secure or
unsecure as specified in securePort and nonSecurePort.
It is normally used for informational purposes for other services to find about the
status of this instance. Users can provide a simple HTML indicating what is the
current status of the instance.eureka.instance.virtual-host-nameunknownGets the virtual host name defined for this instance.
This is typically the way other instance would find this instance by using the
virtual host name.Think of this as similar to the fully qualified domain name, that
the users of your services will need to find this instance.eureka.server.a-s-g-cache-expiry-timeout-ms0eureka.server.a-s-g-query-timeout-ms300eureka.server.a-s-g-update-interval-ms0eureka.server.a-w-s-access-ideureka.server.a-w-s-secret-keyeureka.server.batch-replicationfalseeureka.server.binding-strategyeureka.server.delta-retention-timer-interval-in-ms0eureka.server.disable-deltafalseeureka.server.disable-delta-for-remote-regionsfalseeureka.server.disable-transparent-fallback-to-other-regionfalseeureka.server.e-i-p-bind-rebind-retries3eureka.server.e-i-p-binding-retry-interval-ms0eureka.server.e-i-p-binding-retry-interval-ms-when-unbound0eureka.server.enable-replicated-request-compressionfalseeureka.server.enable-self-preservationtrueeureka.server.eviction-interval-timer-in-ms0eureka.server.g-zip-content-from-remote-regiontrueeureka.server.json-codec-nameeureka.server.list-auto-scaling-groups-role-nameListAutoScalingGroupseureka.server.log-identity-headerstrueeureka.server.max-elements-in-peer-replication-pool10000eureka.server.max-elements-in-status-replication-pool10000eureka.server.max-idle-thread-age-in-minutes-for-peer-replication15eureka.server.max-idle-thread-in-minutes-age-for-status-replication10eureka.server.max-threads-for-peer-replication20eureka.server.max-threads-for-status-replication1eureka.server.max-time-for-replication30000eureka.server.min-available-instances-for-peer-replication-1eureka.server.min-threads-for-peer-replication5eureka.server.min-threads-for-status-replication1eureka.server.number-of-replication-retries5eureka.server.peer-eureka-nodes-update-interval-ms0eureka.server.peer-eureka-status-refresh-time-interval-ms0eureka.server.peer-node-connect-timeout-ms200eureka.server.peer-node-connection-idle-timeout-seconds30eureka.server.peer-node-read-timeout-ms200eureka.server.peer-node-total-connections1000eureka.server.peer-node-total-connections-per-host500eureka.server.prime-aws-replica-connectionstrueeureka.server.property-resolvereureka.server.rate-limiter-burst-size10eureka.server.rate-limiter-enabledfalseeureka.server.rate-limiter-full-fetch-average-rate100eureka.server.rate-limiter-privileged-clientseureka.server.rate-limiter-registry-fetch-average-rate500eureka.server.rate-limiter-throttle-standard-clientsfalseeureka.server.registry-sync-retries0eureka.server.registry-sync-retry-wait-ms0eureka.server.remote-region-app-whitelisteureka.server.remote-region-connect-timeout-ms1000eureka.server.remote-region-connection-idle-timeout-seconds30eureka.server.remote-region-fetch-thread-pool-size20eureka.server.remote-region-read-timeout-ms1000eureka.server.remote-region-registry-fetch-interval30eureka.server.remote-region-total-connections1000eureka.server.remote-region-total-connections-per-host500eureka.server.remote-region-trust-storeeureka.server.remote-region-trust-store-passwordchangeiteureka.server.remote-region-urlseureka.server.remote-region-urls-with-nameeureka.server.renewal-percent-threshold0.85eureka.server.renewal-threshold-update-interval-ms0eureka.server.response-cache-auto-expiration-in-seconds180eureka.server.response-cache-update-interval-ms0eureka.server.retention-time-in-m-s-in-delta-queue0eureka.server.route53-bind-rebind-retries3eureka.server.route53-binding-retry-interval-ms0eureka.server.route53-domain-t-t-l30eureka.server.sync-when-timestamp-differstrueeureka.server.use-read-only-response-cachetrueeureka.server.wait-time-in-ms-when-sync-empty0eureka.server.xml-codec-namefeign.client.configfeign.client.default-configdefaultfeign.client.default-to-propertiestruefeign.compression.request.mime-types[text/xml, application/xml, application/json]The list of supported mime types.feign.compression.request.min-request-size2048The minimum threshold content size.feign.httpclient.connection-timeout2000feign.httpclient.connection-timer-repeat3000feign.httpclient.disable-ssl-validationfalsefeign.httpclient.follow-redirectstruefeign.httpclient.max-connections200feign.httpclient.max-connections-per-route50feign.httpclient.time-to-live900feign.httpclient.time-to-live-unithealth.config.enabledfalseFlag to indicate that the config server health indicator should be installed.health.config.time-to-live0Time to live for cached result, in milliseconds. Default 300000 (5 min).hystrix.metrics.enabledtrueEnable Hystrix metrics polling. Defaults to true.hystrix.metrics.polling-interval-ms2000Interval between subsequent polling of metrics. Defaults to 2000 ms.management.health.refresh.enabledtrueEnable the health endpoint for the refresh scope.management.health.zookeeper.enabledtrueEnable the health endpoint for zookeeper.netflix.atlas.batch-size10000netflix.atlas.enabledtruenetflix.atlas.urinetflix.metrics.servo.cache-warning-threshold1000When the ServoMonitorCache reaches this size, a warning is logged.
This will be useful if you are using string concatenation in RestTemplate urls.netflix.metrics.servo.registry-classcom.netflix.servo.BasicMonitorRegistryFully qualified class name for monitor registry used by Servo.proxy.auth.load-balancedfalseproxy.auth.routesAuthentication strategy per route.ribbon.eager-load.clientsribbon.eager-load.enabledfalseribbon.secure-portsspring.cloud.bus.ack.destination-serviceService that wants to listen to acks. By default null (meaning all services).spring.cloud.bus.ack.enabledtrueFlag to switch off acks (default on).spring.cloud.bus.destinationspringCloudBusName of Spring Cloud Stream destination for messages.spring.cloud.bus.enabledtrueFlag to indicate that the bus is enabled.spring.cloud.bus.env.enabledtrueFlag to switch off environment change events (default on).spring.cloud.bus.refresh.enabledtrueFlag to switch off refresh events (default on).spring.cloud.bus.trace.enabledfalseFlag to switch on tracing of acks (default off).spring.cloud.cloudfoundry.discovery.enabledtrueFlag to indicate that discovery is enabled.spring.cloud.cloudfoundry.discovery.heartbeat-frequency5000Frequency in milliseconds of poll for heart beat. The client will poll on this
frequency and broadcast a list of service ids.spring.cloud.cloudfoundry.discovery.orgOrganization name to authenticate with (default to user’s default).spring.cloud.cloudfoundry.discovery.passwordPassword for user to authenticate and obtain token.spring.cloud.cloudfoundry.discovery.spaceSpace name to authenticate with (default to user’s default).spring.cloud.cloudfoundry.discovery.urlhttps://api.run.pivotal.ioURL of Cloud Foundry API (Cloud Controller).spring.cloud.cloudfoundry.discovery.usernameUsername to authenticate (usually an email address).spring.cloud.config.allow-overridetrueFlag to indicate that {@link #isOverrideSystemProperties()
systemPropertiesOverride} can be used. Set to false to prevent users from changing
the default accidentally. Default true.spring.cloud.config.authorizationAuthorization token used by the client to connect to the server.spring.cloud.config.discovery.enabledfalseFlag to indicate that config server discovery is enabled (config server URL will be
looked up via discovery).spring.cloud.config.discovery.service-idconfigserverService id to locate config server.spring.cloud.config.enabledtrueFlag to say that remote configuration is enabled. Default true;spring.cloud.config.fail-fastfalseFlag to indicate that failure to connect to the server is fatal (default false).spring.cloud.config.headersAdditional headers used to create the client request.spring.cloud.config.labelThe label name to use to pull remote configuration properties. The default is set
on the server (generally "master" for a git based server).spring.cloud.config.nameName of application used to fetch remote properties.spring.cloud.config.override-nonefalseFlag to indicate that when {@link #setAllowOverride(boolean) allowOverride} is
true, external properties should take lowest priority, and not override any
existing property sources (including local config files). Default false.spring.cloud.config.override-system-propertiestrueFlag to indicate that the external properties should override system properties.
Default true.spring.cloud.config.passwordThe password to use (HTTP Basic) when contacting the remote server.spring.cloud.config.profiledefaultThe default profile to use when fetching remote configuration (comma-separated).
Default is "default".spring.cloud.config.retry.initial-interval1000Initial retry interval in milliseconds.spring.cloud.config.retry.max-attempts6Maximum number of attempts.spring.cloud.config.retry.max-interval2000Maximum interval for backoff.spring.cloud.config.retry.multiplier1.1Multiplier for next interval.spring.cloud.config.server.bootstrapfalseFlag indicating that the config server should initialize its own Environment with
properties from the remote repository. Off by default because it delays startup but
can be useful when embedding the server in another application.spring.cloud.config.server.default-application-nameapplicationDefault application name when incoming requests do not have a specific one.spring.cloud.config.server.default-labelDefault repository label when incoming requests do not have a specific label.spring.cloud.config.server.default-profiledefaultDefault application profile when incoming requests do not have a specific one.spring.cloud.config.server.encrypt.enabledtrueEnable decryption of environment properties before sending to client.spring.cloud.config.server.git.basedirBase directory for local working copy of repository.spring.cloud.config.server.git.clone-on-startfalseFlag to indicate that the repository should be cloned on startup (not on demand).
Generally leads to slower startup but faster first query.spring.cloud.config.server.git.default-labelmasterspring.cloud.config.server.git.delete-untracked-branchesfalseFlag to indicate that the branch should be deleted locally if it’s origin tracked branch was removed.spring.cloud.config.server.git.environmentspring.cloud.config.server.git.force-pullfalseFlag to indicate that the repository should force pull. If true discard any local
changes and take from remote repository.spring.cloud.config.server.git.git-credentials-providerThe credentials provider to use to connect to the Git repository.spring.cloud.config.server.git.git-factoryspring.cloud.config.server.git.host-keyspring.cloud.config.server.git.host-key-algorithmspring.cloud.config.server.git.ignore-local-ssh-settingsfalsespring.cloud.config.server.git.known-hosts-filespring.cloud.config.server.git.last-refresh0Time of the last refresh of the git repositoryspring.cloud.config.server.git.orderspring.cloud.config.server.git.passphrasePassphrase for unlocking your ssh private key.spring.cloud.config.server.git.passwordPassword for authentication with remote repository.spring.cloud.config.server.git.preferred-authenticationsspring.cloud.config.server.git.private-keyspring.cloud.config.server.git.proxy-hostspring.cloud.config.server.git.proxy-portspring.cloud.config.server.git.refresh-rate0Time (in seconds) between refresh of the git repositoryspring.cloud.config.server.git.reposMap of repository identifier to location and other properties.spring.cloud.config.server.git.search-pathsSearch paths to use within local working copy. By default searches only the root.spring.cloud.config.server.git.strict-host-key-checkingtrueReject incoming SSH host keys from remote servers not in the known host list.spring.cloud.config.server.git.timeout5Timeout (in seconds) for obtaining HTTP or SSH connection (if applicable). Default
5 seconds.spring.cloud.config.server.git.transport-config-callbackTransport configuration callback for JGit commands.spring.cloud.config.server.git.uriURI of remote repository.spring.cloud.config.server.git.usernameUsername for authentication with remote repository.spring.cloud.config.server.health.repositoriesspring.cloud.config.server.jdbc.order0spring.cloud.config.server.jdbc.sqlSELECT KEY, VALUE from PROPERTIES where APPLICATION=? and PROFILE=? and LABEL=?spring.cloud.config.server.native.add-label-locationstrueFlag to determine whether label locations should be added.spring.cloud.config.server.native.default-labelmasterspring.cloud.config.server.native.fail-on-errorfalseFlag to determine how to handle exceptions during decryption (default false).spring.cloud.config.server.native.orderspring.cloud.config.server.native.search-locations[]Locations to search for configuration files. Defaults to the same as a Spring Boot
app so [classpath:/,classpath:/config/,file:./,file:./config/].spring.cloud.config.server.native.versionVersion string to be reported for native repositoryspring.cloud.config.server.overridesExtra map for a property source to be sent to all clients unconditionally.spring.cloud.config.server.prefixPrefix for configuration resource paths (default is empty). Useful when embedding
in another application when you don’t want to change the context path or servlet
path.spring.cloud.config.server.strip-document-from-yamltrueFlag to indicate that YAML documents that are text or collections (not a map)
should be returned in "native" form.spring.cloud.config.server.svn.basedirBase directory for local working copy of repository.spring.cloud.config.server.svn.default-labeltrunkThe default label for environment properties requests.spring.cloud.config.server.svn.environmentspring.cloud.config.server.svn.orderspring.cloud.config.server.svn.passphrasePassphrase for unlocking your ssh private key.spring.cloud.config.server.svn.passwordPassword for authentication with remote repository.spring.cloud.config.server.svn.search-pathsSearch paths to use within local working copy. By default searches only the root.spring.cloud.config.server.svn.strict-host-key-checkingtrueReject incoming SSH host keys from remote servers not in the known host list.spring.cloud.config.server.svn.uriURI of remote repository.spring.cloud.config.server.svn.usernameUsername for authentication with remote repository.spring.cloud.config.server.vault.orderspring.cloud.config.tokenSecurity Token passed thru to underlying environment repository.spring.cloud.config.urihttp://localhost:8888The URI of the remote server (default http://localhost:8888).spring.cloud.config.usernameThe username to use (HTTP Basic) when contacting the remote server.spring.cloud.consul.config.acl-tokenspring.cloud.consul.config.data-keydataIf format is Format.PROPERTIES or Format.YAML
then the following field is used as key to look up consul for configuration.spring.cloud.consul.config.default-contextapplicationspring.cloud.consul.config.enabledtruespring.cloud.consul.config.fail-fasttrueThrow exceptions during config lookup if true, otherwise, log warnings.spring.cloud.consul.config.formatspring.cloud.consul.config.nameAlternative to spring.application.name to use in looking up values in consul KV.spring.cloud.consul.config.prefixconfigspring.cloud.consul.config.profile-separator,spring.cloud.consul.config.watch.delay1000The value of the fixed delay for the watch in millis. Defaults to 1000.spring.cloud.consul.config.watch.enabledtrueIf the watch is enabled. Defaults to true.spring.cloud.consul.config.watch.wait-time55The number of seconds to wait (or block) for watch query, defaults to 55.
Needs to be less than default ConsulClient (defaults to 60). To increase ConsulClient
timeout create a ConsulClient bean with a custom ConsulRawClient with a custom
HttpClient.spring.cloud.consul.discovery.acl-tokenspring.cloud.consul.discovery.catalog-services-watch-delay10spring.cloud.consul.discovery.catalog-services-watch-timeout2spring.cloud.consul.discovery.datacentersMap of serviceId’s → datacenter to query for in server list.
This allows looking up services in another datacenters.spring.cloud.consul.discovery.default-query-tagTag to query for in service list if one is not listed in serverListQueryTags.spring.cloud.consul.discovery.default-zone-metadata-namezoneService instance zone comes from metadata.
This allows changing the metadata tag name.spring.cloud.consul.discovery.deregistertrueDisable automatic de-registration of service in consul.spring.cloud.consul.discovery.enabledtrueIs service discovery enabled?spring.cloud.consul.discovery.fail-fasttrueThrow exceptions during service registration if true, otherwise, log
warnings (defaults to true).spring.cloud.consul.discovery.health-check-critical-timeoutTimeout to deregister services critical for longer than timeout (e.g. 30m).
Requires consul version 7.x or higher.spring.cloud.consul.discovery.health-check-interval10sHow often to perform the health check (e.g. 10s), defaults to 10s.spring.cloud.consul.discovery.health-check-path/healthAlternate server path to invoke for health checkingspring.cloud.consul.discovery.health-check-timeoutTimeout for health check (e.g. 10s).spring.cloud.consul.discovery.health-check-tls-skip-verifySkips certificate verification during service checks if true, otherwise
runs certificate verification.spring.cloud.consul.discovery.health-check-urlCustom health check url to override defaultspring.cloud.consul.discovery.heartbeat.enabledfalsespring.cloud.consul.discovery.heartbeat.heartbeat-intervalspring.cloud.consul.discovery.heartbeat.interval-ratiospring.cloud.consul.discovery.heartbeat.ttl-unitsspring.cloud.consul.discovery.heartbeat.ttl-value30spring.cloud.consul.discovery.hostnameHostname to use when accessing serverspring.cloud.consul.discovery.instance-groupService instance groupspring.cloud.consul.discovery.instance-idUnique service instance idspring.cloud.consul.discovery.instance-zoneService instance zonespring.cloud.consul.discovery.ip-addressIP address to use when accessing service (must also set preferIpAddress to use)spring.cloud.consul.discovery.lifecycle.enabledtruespring.cloud.consul.discovery.management-portPort to register the management service under (defaults to management port)spring.cloud.consul.discovery.management-suffixmanagementSuffix to use when registering management servicespring.cloud.consul.discovery.management-tagsTags to use when registering management servicespring.cloud.consul.discovery.portPort to register the service under (defaults to listening port)spring.cloud.consul.discovery.prefer-agent-addressfalseSource of how we will determine the address to usespring.cloud.consul.discovery.prefer-ip-addressfalseUse ip address rather than hostname during registrationspring.cloud.consul.discovery.query-passingfalseAdd the 'passing` parameter to /v1/health/service/serviceName.
This pushes health check passing to the server.spring.cloud.consul.discovery.registertrueRegister as a service in consul.spring.cloud.consul.discovery.register-health-checktrueRegister health check in consul. Useful during development of a service.spring.cloud.consul.discovery.schemehttpWhether to register an http or https servicespring.cloud.consul.discovery.server-list-query-tagsMap of serviceId’s → tag to query for in server list.
This allows filtering services by a single tag.spring.cloud.consul.discovery.service-nameService namespring.cloud.consul.discovery.tagsTags to use when registering servicespring.cloud.consul.enabledtrueIs spring cloud consul enabledspring.cloud.consul.hostlocalhostConsul agent hostname. Defaults to 'localhost'.spring.cloud.consul.port8500Consul agent port. Defaults to '8500'.spring.cloud.consul.retry.initial-interval1000Initial retry interval in milliseconds.spring.cloud.consul.retry.max-attempts6Maximum number of attempts.spring.cloud.consul.retry.max-interval2000Maximum interval for backoff.spring.cloud.consul.retry.multiplier1.1Multiplier for next interval.spring.cloud.discovery.client.health-indicator.enabledtruespring.cloud.discovery.client.health-indicator.include-descriptiontruespring.cloud.discovery.client.simple.instancesspring.cloud.discovery.client.simple.local.metadataMetadata for the service instance. Can be used by discovery clients to modify
their behaviour per instance, e.g. when load balancing.spring.cloud.discovery.client.simple.local.service-idThe identifier or name for the service. Multiple instances might share the same
service id.spring.cloud.discovery.client.simple.local.uriThe URI of the service instance. Will be parsed to extract the scheme, hos and
port.spring.cloud.gateway.proxy.headersFixed header values that will be added to all downstream requests.spring.cloud.gateway.proxy.sensitiveA set of sensitive header names that will not be sent downstream by default.spring.cloud.hypermedia.refresh.fixed-delay5000spring.cloud.hypermedia.refresh.initial-delay10000spring.cloud.inetutils.default-hostnamelocalhostThe default hostname. Used in case of errors.spring.cloud.inetutils.default-ip-address127.0.0.1The default ipaddress. Used in case of errors.spring.cloud.inetutils.ignored-interfacesList of Java regex expressions for network interfaces that will be ignored.spring.cloud.inetutils.preferred-networksList of Java regex expressions for network addresses that will be preferred.spring.cloud.inetutils.timeout-seconds1Timeout in seconds for calculating hostname.spring.cloud.inetutils.use-only-site-local-interfacesfalseUse only interfaces with site local addresses. See {@link InetAddress#isSiteLocalAddress()} for more details.spring.cloud.loadbalancer.retry.enabledtruespring.cloud.service-registry.auto-registration.enabledtrueIf Auto-Service Registration is enabled, default to true.spring.cloud.service-registry.auto-registration.fail-fastfalseShould startup fail if there is no AutoServiceRegistration, default to false.spring.cloud.service-registry.auto-registration.register-managementtrueWhether to register the management as a service, defaults to truespring.cloud.stream.bindersspring.cloud.stream.bindingsspring.cloud.stream.consul.binder.event-timeout5spring.cloud.stream.default-binderspring.cloud.stream.dynamic-destinations[]spring.cloud.stream.instance-count1spring.cloud.stream.instance-index0spring.cloud.stream.integration.message-handler-not-propagated-headersMessage header names that will NOT be copied from the inbound message.spring.cloud.zookeeper.base-sleep-time-ms50Initial amount of time to wait between retriesspring.cloud.zookeeper.block-until-connected-unitThe unit of time related to blocking on connection to Zookeeperspring.cloud.zookeeper.block-until-connected-wait10Wait time to block on connection to Zookeeperspring.cloud.zookeeper.connect-stringlocalhost:2181Connection string to the Zookeeper clusterspring.cloud.zookeeper.default-health-endpointDefault health endpoint that will be checked to verify that a dependency is alivespring.cloud.zookeeper.dependenciesMapping of alias to ZookeeperDependency. From Ribbon perspective the alias
is actually serviceID since Ribbon can’t accept nested structures in serviceIDspring.cloud.zookeeper.dependency-configurationsspring.cloud.zookeeper.dependency-namesspring.cloud.zookeeper.discovery.enabledtruespring.cloud.zookeeper.discovery.initial-statusThe initial status of this instance (defaults to {@link StatusConstants#STATUS_UP}).spring.cloud.zookeeper.discovery.instance-hostPredefined host with which a service can register itself in Zookeeper. Corresponds
to the {code address} from the URI spec.spring.cloud.zookeeper.discovery.instance-idId used to register with zookeeper. Defaults to a random UUID.spring.cloud.zookeeper.discovery.instance-portPort to register the service under (defaults to listening port)spring.cloud.zookeeper.discovery.instance-ssl-portSsl port of the registered service.spring.cloud.zookeeper.discovery.metadataGets the metadata name/value pairs associated with this instance. This information
is sent to zookeeper and can be used by other instances.spring.cloud.zookeeper.discovery.registertrueRegister as a service in zookeeper.spring.cloud.zookeeper.discovery.root/servicesRoot Zookeeper folder in which all instances are registeredspring.cloud.zookeeper.discovery.uri-spec{scheme}://{address}:{port}The URI specification to resolve during service registration in Zookeeperspring.cloud.zookeeper.enabledtrueIs Zookeeper enabledspring.cloud.zookeeper.max-retries10Max number of times to retryspring.cloud.zookeeper.max-sleep-ms500Max time in ms to sleep on each retryspring.cloud.zookeeper.prefixCommon prefix that will be applied to all Zookeeper dependencies' pathsspring.integration.poller.fixed-delay1000Fixed delay for default poller.spring.integration.poller.max-messages-per-poll1Maximum messages per poll for the default poller.spring.sleuth.annotation.enabledtruespring.sleuth.async.configurer.enabledtrueEnable default AsyncConfigurer.spring.sleuth.async.enabledtrueEnable instrumenting async related components so that the tracing information is passed between threads.spring.sleuth.enabledtruespring.sleuth.feign.enabledtrueEnable span information propagation when using Feign.spring.sleuth.feign.processor.enabledtrueEnable post processor that wraps Feign Context in its tracing representations.spring.sleuth.hystrix.strategy.enabledtrueEnable custom HystrixConcurrencyStrategy that wraps all Callable instances into their Sleuth representative - the TraceCallable.spring.sleuth.integration.enabledtrueEnable Spring Integration sleuth instrumentation.spring.sleuth.integration.patterns*An array of simple patterns against which channel names will be matched. Default is * (all channels). See org.springframework.util.PatternMatchUtils.simpleMatch(String, String).spring.sleuth.integration.websockets.enabledtrueEnable tracing for WebSockets.spring.sleuth.keys.async.class-name-keyclassSimple name of the class with a method annotated with {@code @Async}
from which the asynchronous process started
@see org.springframework.scheduling.annotation.Asyncspring.sleuth.keys.async.method-name-keymethodName of the method annotated with {@code @Async}
@see org.springframework.scheduling.annotation.Asyncspring.sleuth.keys.async.prefixPrefix for header names if they are added as tags.spring.sleuth.keys.async.thread-name-keythreadName of the thread that executed the async method
@see org.springframework.scheduling.annotation.Asyncspring.sleuth.keys.http.headersAdditional headers that should be added as tags if they exist. If the header
value is multi-valued, the tag value will be a comma-separated, single-quoted
list.spring.sleuth.keys.http.hosthttp.hostThe domain portion of the URL or host header. Example:
"mybucket.s3.amazonaws.com". Used to filter by host as opposed to ip address.spring.sleuth.keys.http.methodhttp.methodThe HTTP method, or verb, such as "GET" or "POST". Used to filter against an
http route.spring.sleuth.keys.http.pathhttp.pathThe absolute http path, without any query parameters. Example:
"/objects/abcd-ff". Used to filter against an http route, portably with zipkin
v1. In zipkin v1, only equals filters are supported. Dropping query parameters
makes the number of distinct URIs less. For example, one can query for the same
resource, regardless of signing parameters encoded in the query line. This does
not reduce cardinality to a HTTP single route. For example, it is common to
express a route as an http URI template like "/resource/{resource_id}". In
systems where only equals queries are available, searching for
{@code http.uri=/resource} won’t match if the actual request was
"/resource/abcd-ff". Historical note: This was commonly expressed as "http.uri"
in zipkin, eventhough it was most often just a path.spring.sleuth.keys.http.prefixhttp.Prefix for header names if they are added as tags.spring.sleuth.keys.http.request-sizehttp.request.sizeThe size of the non-empty HTTP request body, in bytes. Ex. "16384"
<p>Large uploads can exceed limits or contribute directly to latency.spring.sleuth.keys.http.response-sizehttp.response.sizeThe size of the non-empty HTTP response body, in bytes. Ex. "16384"
<p>Large downloads can exceed limits or contribute directly to latency.spring.sleuth.keys.http.status-codehttp.status_codeThe HTTP response code, when not in 2xx range. Ex. "503" Used to filter for
error status. 2xx range are not logged as success codes are less interesting
for latency troubleshooting. Omitting saves at least 20 bytes per span.spring.sleuth.keys.http.urlhttp.urlThe entire URL, including the scheme, host and query parameters if available.
Ex.
"https://mybucket.s3.amazonaws.com/objects/abcd-ff?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Algorithm=AWS4-HMAC-SHA256…"
Combined with {@link #method}, you can understand the fully-qualified
request line. This is optional as it may include private data or be of
considerable length.spring.sleuth.keys.hystrix.command-groupcommandGroupName of the command group. Hystrix uses the command group key to group
together commands such as for reporting, alerting, dashboards,
or team/library ownership.
@see com.netflix.hystrix.HystrixCommandGroupKeyspring.sleuth.keys.hystrix.command-keycommandKeyName of the command key. Describes the name for the given command.
A key to represent a {@link com.netflix.hystrix.HystrixCommand} for
monitoring, circuit-breakers, metrics publishing, caching and other such uses.
@see com.netflix.hystrix.HystrixCommandKeyspring.sleuth.keys.hystrix.prefixPrefix for header names if they are added as tags.spring.sleuth.keys.hystrix.thread-pool-keythreadPoolKeyName of the thread pool key. The thread-pool key represents a {@link com.netflix.hystrix.HystrixThreadPool}
for monitoring, metrics publishing, caching, and other such uses. A {@link com.netflix.hystrix.HystrixCommand}
is associated with a single {@link com.netflix.hystrix.HystrixThreadPool} as
retrieved by the {@link com.netflix.hystrix.HystrixThreadPoolKey} injected into it,
or it defaults to one created using the {@link com.netflix.hystrix.HystrixCommandGroupKey}
it is created with.
@see com.netflix.hystrix.HystrixThreadPoolKeyspring.sleuth.keys.message.headersAdditional headers that should be added as tags if they exist. If the header
value is not a String it will be converted to a String using its toString()
method.spring.sleuth.keys.message.payload.sizemessage/payload-sizeAn estimate of the size of the payload if available.spring.sleuth.keys.message.payload.typemessage/payload-typeThe type of the payload.spring.sleuth.keys.message.prefixmessage/Prefix for header names if they are added as tags.spring.sleuth.keys.mvc.controller-classmvc.controller.classThe lower case, hyphen delimited name of the class that processes the request.
Ex. class named "BookController" will result in "book-controller" tag value.spring.sleuth.keys.mvc.controller-methodmvc.controller.methodThe lower case, hyphen delimited name of the class that processes the request.
Ex. method named "listOfBooks" will result in "list-of-books" tag value.spring.sleuth.log.slf4j.enabledtrueEnable a {@link Slf4jSpanLogger} that prints tracing information in the logs.spring.sleuth.log.slf4j.name-skip-patternName pattern for which span should not be printed in the logs.spring.sleuth.metric.enabledtrueEnable calculation of accepted and dropped spans through {@link org.springframework.boot.actuate.metrics.CounterService}spring.sleuth.metric.span.accepted-namecounter.span.acceptedspring.sleuth.metric.span.dropped-namecounter.span.droppedspring.sleuth.rxjava.schedulers.hook.enabledtrueEnable support for RxJava via RxJavaSchedulersHook.spring.sleuth.rxjava.schedulers.ignoredthreads[HystrixMetricPoller, ^RxComputation.*$]Thread names for which spans will not be sampled.spring.sleuth.sampler.percentage0.1Percentage of requests that should be sampled. E.g. 1.0 - 100% requests should be
sampled. The precision is whole-numbers only (i.e. there’s no support for 0.1% of
the traces).spring.sleuth.scheduled.enabledtrueEnable tracing for {@link org.springframework.scheduling.annotation.Scheduled}.spring.sleuth.scheduled.skip-patternPattern for the fully qualified name of a class that should be skipped.spring.sleuth.supports-jointrueWhen true, your tracing system allows sharing a span ID between a client and server spanspring.sleuth.trace-id128falseWhen true, generate 128-bit trace IDs instead of 64-bit ones.spring.sleuth.web.client.enabledtrueEnable interceptor injecting into {@link org.springframework.web.client.RestTemplate}spring.sleuth.web.enabledtrueWhen true enables instrumentation for web applicationsspring.sleuth.web.skip-pattern/api-docs.*/autoconfig/configprops/dump/health/info/metrics.*/mappings/trace/swagger.*.*\.png.*\.css.*\.js.*\.html/favicon.ico/hystrix.streamPattern for URLs that should be skipped in tracingspring.sleuth.zuul.enabledtrueEnable span information propagation when using Zuul.stubrunner.classifierstubsThe classifier to use by default in ivy co-ordinates for a stub.stubrunner.consumer-nameYou can override the default {@code spring.application.name} of this field by setting a value to this parameter.stubrunner.ids[]The ids of the stubs to run in "ivy" notation ([groupId]:artifactId:[version]:[classifier][:port]).
{@code groupId}, {@code classifier}, {@code version} and {@code port} can be optional.stubrunner.ids-to-service-idsMapping of Ivy notation based ids to serviceIds
inside your application
Example
"a:b" → "myService"
"artifactId" → "myOtherService"stubrunner.mappings-output-folderDumps the mappings of each HTTP server to the selected folderstubrunner.max-port15000Max value of a port for the automatically started WireMock serverstubrunner.min-port10000Min value of a port for the automatically started WireMock serverstubrunner.passwordRepository passwordstubrunner.proxy-hostRepository proxy hoststubrunner.proxy-portRepository proxy portstubrunner.repository-rootThe repository root to use (where the stubs should be downloaded from)stubrunner.stubs-per-consumerfalseShould only stubs for this particular consumer get registered in HTTP server stub.stubrunner.usernameRepository usernamestubrunner.work-offlinefalseShould the stubs be checked for presence only locallyzuul.add-host-headerfalseFlag to determine whether the proxy forwards the Host header.zuul.add-proxy-headerstrueFlag to determine whether the proxy adds X-Forwarded-* headers.zuul.force-original-query-string-encodingfalseFlag to force the original query string encoding when building the backend URI in
SimpleHostRoutingFilter. When activated, query string will be built using
HttpServletRequest getQueryString() method instead of UriTemplate. Note that this
flag is not used in RibbonRoutingFilter with services found via DiscoveryClient
(like Eureka).zuul.host.connect-timeout-millis2000The connection timeout in millis. Defaults to 2000.zuul.host.max-per-route-connections20The maximum number of connections that can be used by a single route.zuul.host.max-total-connections200The maximum number of total connections the proxy can hold open to backends.zuul.host.socket-timeout-millis10000The socket timeout in millis. Defaults to 10000.zuul.host.time-to-live-1The lifetime for the connection pool.zuul.host.time-unitThe time unit for timeToLive.zuul.ignore-local-servicetruezuul.ignore-security-headerstrueFlag to say that SECURITY_HEADERS are added to ignored headers if spring security is on the classpath.
By setting ignoreSecurityHeaders to false we can switch off this default behaviour. This should be used together with
disabling the default spring security headers
see https://docs.spring.io/spring-security/site/docs/current/reference/html/headers.html#default-security-headerszuul.ignored-headersNames of HTTP headers to ignore completely (i.e. leave them out of downstream
requests and drop them from downstream responses).zuul.ignored-patternszuul.ignored-servicesSet of service names not to consider for proxying automatically. By default all
services in the discovery client will be proxied.zuul.include-debug-headerfalseSetting for SendResponseFilter to conditionally include X-Zuul-Debug-Header header.zuul.initial-stream-buffer-size8192Setting for SendResponseFilter for the initial stream buffer size.zuul.prefixA common prefix for all routes.zuul.remove-semicolon-contenttrueFlag to say that path elements past the first semicolon can be dropped.zuul.retryablefalseFlag for whether retry is supported by default (assuming the routes themselves
support it).zuul.ribbon-isolation-strategyzuul.routesMap of route names to properties.zuul.semaphore.max-semaphores100The maximum number of total semaphores for Hystrix.zuul.sensitive-headersList of sensitive headers that are not passed to downstream requests. Defaults to a
"safe" set of headers that commonly contain user credentials. It’s OK to remove
those from the list if the downstream service is part of the same system as the
proxy, so they are sharing authentication data. If using a physical URL outside
your own domain, then generally it would be a bad idea to leak user credentials.zuul.servlet-path/zuulPath to install Zuul as a servlet (not part of Spring MVC). The servlet is more
memory efficient for requests with large bodies, e.g. file uploads.zuul.set-content-lengthfalseSetting for SendResponseFilter to conditionally set Content-Length header.zuul.ssl-hostname-validation-enabledtrueFlag to say whether the hostname for ssl connections should be verified or not. Default is true.
This should only be used in test setups!zuul.strip-prefixtrueFlag saying whether to strip the prefix from the path before forwarding.zuul.thread-pool.thread-pool-key-prefixA prefix for HystrixThreadPoolKey of hystrix’s thread pool that is allocated to each service Id.
This property is only applicable when using THREAD as ribbonIsolationStrategy and useSeparateThreadPools = truezuul.thread-pool.use-separate-thread-poolsfalseFlag to determine whether RibbonCommands should use separate thread pools for hystrix.
By setting to true, RibbonCommands will be executed in a hystrix’s thread pool that it is associated with.
Each RibbonCommand will be associated with a thread pool according to its commandKey (serviceId).
As default, all commands will be executed in a single thread pool whose threadPoolKey is "RibbonCommand".
This property is only applicable when using THREAD as ribbonIsolationStrategyzuul.trace-request-bodytrueFlag to say that request bodies can be traced.